/* ==========================================================================
   VIBE Construction — design tokens
   ========================================================================== */
:root {
  --ink: #1c221f;
  --ink-soft: #4a534e;
  --black: #0a0a0a;
  --cream: #faf6ef;
  --cream-deep: #faf6ef;
  --white: #ffffff;
  --teal-900: #0d2b29;
  --teal-800: #144240;
  --teal-600: #1e615e;
  --teal-400: #39b9b2;
  --teal-200: #5bcdc6;
  --teal-100: #a1e2df;
  --teal-50: #e4f7f6;
  --clay-600: #1e615e;
  --clay-500: #39b9b2;
  --clay-100: #a1e2df;
  --gold: #f2b134;
  --shadow-soft: 0 10px 30px rgba(28, 34, 31, 0.08);
  --shadow-card: 0 4px 16px rgba(28, 34, 31, 0.06);
  --radius-lg: 28px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --font-head: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --maxw: 1180px;
}

* { box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, p, span, a, li { overflow-wrap: break-word; word-break: break-word; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(1.8rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.3rem); }
p { margin: 0 0 1em; color: var(--ink-soft); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
@media (max-width: 699px) {
  .section-tight-top { padding-top: 40px; }
  .section-tight-top .grid-3 { margin-top: 28px; }
}
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay-600);
  font-weight: 600;
  margin-bottom: 12px;
}
.center { text-align: center; }
.lede { font-size: 1.15rem; max-width: 620px; }
.center .lede { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--white); color: var(--black); }
.btn-primary:hover { background: var(--clay-500); color: var(--black); }
.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--black); border-color: var(--black); color: var(--cream); }
.btn-outline-light { border-color: var(--cream); color: var(--cream); background: transparent; }
.btn-outline-light:hover { background: var(--cream); border-color: var(--cream); color: var(--black); }
.btn-ghost { color: var(--ink); }
.btn-light { background: var(--cream); color: var(--black); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.brand { display: flex; align-items: center; gap: 10px; margin-left: 12px; }
.brand img { height: 46px; width: auto; }
.nav-links { display: none; gap: 32px; align-items: center; justify-content: flex-end; }
.nav-links a { color: var(--cream); font-weight: 500; font-size: 0.95rem; padding: 8px 0; border-bottom: 2px solid transparent; }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none;
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  margin-top: 8px; padding: 10px;
  background: #141414; border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); box-shadow: var(--shadow-soft);
  min-width: 230px; z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 9px 12px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; color: var(--cream); border-bottom: none;
  white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(255,255,255,0.06); color: var(--clay-500); }
.nav-links a:hover, .nav-links a.active { border-color: var(--clay-500); }
.header-cta { display: none; align-items: center; gap: 12px; }
.btn-phone {
  color: var(--teal-100); background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.88rem; padding: 10px 18px;
}
.btn-phone svg { width: 15px; height: 15px; }
.btn-phone:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.3); color: var(--cream); }
.nav-toggle {
  border: none; background: none; cursor: pointer; padding: 6px; color: var(--cream);
}
.nav-toggle svg { width: 28px; height: 28px; }
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--cream); padding: 12px 0; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-dropdown { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-dropdown summary {
  padding: 12px 0; font-weight: 500; color: var(--cream); cursor: pointer;
  list-style: none;
}
.mobile-dropdown summary::-webkit-details-marker { display: none; }
.mobile-dropdown summary::after { content: "+"; float: right; color: rgba(250,246,239,0.5); }
.mobile-dropdown[open] summary::after { content: "\2212"; }
.mobile-dropdown a {
  display: block; padding: 10px 0 10px 16px; font-size: 0.9rem;
  color: rgba(250,246,239,0.8); border-bottom: none;
}

@media (min-width: 900px) {
  .brand img { height: 54px; }
  .nav-links { display: flex; }
  .header-cta { display: flex; }
  .nav-toggle { display: none; }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  color: var(--cream);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.85) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 64px 0 72px;
  width: 100%;
  text-align: center;
}
.hero-copy { max-width: 640px; margin: 0 auto; }
.hero-copy h1 {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: #e9e7e2;
  font-size: clamp(2.3rem, 9vw, 3.6rem);
}
@media (min-width: 1024px) {
  .hero-copy h1 { font-size: clamp(2.6rem, 4vw, 3.8rem); }
}
.hero-copy .lede {
  color: var(--teal-50); margin-left: auto; margin-right: auto;
  font-size: clamp(1.05rem, 3.6vw, 1.3rem);
}
.google-badge {
  display: flex; align-items: center; gap: 8px;
  width: fit-content; margin: 0 auto 20px;
  background: rgba(255,255,255,0.72); border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(3px);
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; color: var(--black);
}
.hero .google-badge { background: rgba(255,255,255,0.3); font-size: clamp(0.85rem, 2.6vw, 0.95rem); padding: 9px 18px; }
.hero-copy .badges { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; justify-content: center; }
.hero-copy .badges span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 16px; border-radius: 999px;
  font-size: 0.85rem; font-weight: 600; color: var(--cream);
  backdrop-filter: blur(4px);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; justify-content: center; }
@media (min-width: 900px) {
  .hero { min-height: 720px; }
}

/* Materials bar (Home, below hero) — auto-scrolling marquee */
.materials-bar { background: var(--white); border-bottom: 1px solid rgba(28,34,31,0.07); padding: 20px 0 22px; overflow: hidden; }
.materials-bar-label {
  text-align: center; margin: 0 0 14px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink-soft);
}
.materials-marquee {
  position: relative; overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.materials-marquee-track {
  display: flex; align-items: center; width: max-content;
  animation: materials-scroll 26s linear infinite;
}
.materials-marquee:hover .materials-marquee-track { animation-play-state: paused; }
.materials-item {
  font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; letter-spacing: -0.01em;
  color: var(--ink); opacity: 0.82; white-space: nowrap; padding: 0 6px;
  display: inline-flex; align-items: center;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.materials-item:hover { opacity: 1; }
.materials-item img {
  height: 34px; width: auto; max-width: 160px;
  display: block; object-fit: contain;
  opacity: 0.92;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.materials-item:hover img { opacity: 1; transform: translateY(-1px); }
.materials-item-westbury img { height: 48px; }
.materials-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal-400);
  margin: 0 28px; flex-shrink: 0;
}
@keyframes materials-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .materials-marquee-track { animation: none; }
}

/* Credentials bar */
.credentials-section {
  position: relative; overflow: hidden;
  background: var(--black); color: var(--cream);
}
.credentials-section::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../img/pattern-flower-grey.png");
  background-repeat: repeat;
  background-size: 1920px auto;
  opacity: 0.08;
  pointer-events: none;
}
.credentials-section > .container { position: relative; z-index: 1; }
.credentials-label {
  text-align: center; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(250,246,239,0.55); margin: 0 0 10px;
}
.credentials-tagline {
  text-align: center; font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem); color: var(--cream);
  max-width: 560px; margin: 0 auto 32px;
}
.credentials-row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 24px 48px;
}
.credential-item {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 0.98rem; color: var(--cream);
}
.credential-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--teal-50); color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.credential-logo img { height: 62px; width: auto; }
.credential-logo-local img { height: 96px; }
@media (max-width: 699px) {
  .credentials-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 30px;
    padding: 4px 4px 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .credentials-row::-webkit-scrollbar { display: none; }
  .credential-item { flex-shrink: 0; }
  .credential-logo img { height: 46px; }
  .credential-logo-local img { height: 64px; }
}

/* Special offer banner (Home) */
.offer-banner {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: var(--black); color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
}
.offer-banner::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../img/pattern-flower-grey.png");
  background-repeat: repeat;
  background-size: 1920px auto;
  opacity: 0.08;
  pointer-events: none;
}
.offer-banner-copy { position: relative; z-index: 1; max-width: 560px; }
.offer-banner-badge { position: relative; z-index: 1; flex-shrink: 0; }
.offer-badge {
  display: inline-block; margin-bottom: 14px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(57,185,178,0.16); color: var(--teal-400);
  font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
}
.offer-banner-copy h2 { color: var(--cream); margin-bottom: 12px; }
.offer-banner-copy p { color: rgba(250,246,239,0.72); margin-bottom: 24px; }
.offer-circle {
  width: 168px; height: 168px; border-radius: 50%;
  border: 3px dashed var(--teal-400);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.offer-circle-num {
  font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; line-height: 1;
  color: var(--cream);
}
.offer-circle-label {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.14em; color: var(--teal-400); margin-top: 4px;
}
@media (max-width: 720px) {
  .offer-banner { flex-direction: column; text-align: center; padding: 36px 28px; }
  .offer-banner-copy { max-width: none; }
  .offer-circle { width: 132px; height: 132px; }
  .offer-circle-num { font-size: 2.1rem; }
}

/* Service detail — material types */
.material-type-grid { display: grid; gap: 24px; grid-template-columns: 1fr; margin-top: 48px; text-align: left; }
@media (min-width: 700px) { .material-type-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .material-type-grid { grid-template-columns: repeat(4, 1fr); } }
.material-type-card p { font-size: 0.92rem; margin-bottom: 0; }

/* Service detail — why choose us */
.why-choose-split.split { align-items: stretch; }
.why-choose-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); min-height: 260px; }
.why-choose-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-choose-list { margin-top: 28px; display: flex; flex-direction: column; gap: 24px; }
.why-choose-item { display: flex; gap: 18px; align-items: flex-start; }
.why-choose-num {
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  color: var(--teal-400); opacity: 0.7; flex-shrink: 0; padding-top: 2px;
}
.why-choose-item h3 { color: var(--cream); font-size: 1.05rem; margin-bottom: 6px; }
.why-choose-item p { color: rgba(250,246,239,0.65); margin-bottom: 0; font-size: 0.93rem; }

/* Service detail — process flow */
.process-flow {
  display: grid; gap: 32px; grid-template-columns: 1fr;
  margin-top: 48px; text-align: left; position: relative;
}
@media (min-width: 900px) {
  .process-flow { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .process-flow::before {
    content: "";
    position: absolute; top: 27px; left: 12.5%; right: 12.5%; height: 2px;
    background: repeating-linear-gradient(90deg, rgba(28,34,31,0.18) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
}
.process-step { position: relative; z-index: 1; }
.process-step-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--black); color: var(--teal-400);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem;
  margin-bottom: 20px; box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, background 0.25s ease;
}
.process-step:hover .process-step-num { transform: scale(1.08) rotate(-4deg); background: var(--teal-600); }
.process-step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.process-step p { font-size: 0.92rem; margin-bottom: 0; }
.process-photo {
  margin-top: 56px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-soft); max-height: 420px;
}
.process-photo img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; display: block; }

/* Service detail — FAQ accordion */
.faq-list { max-width: 780px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: 6px 24px;
  transition: box-shadow 0.2s ease;
}
.faq-item[open] { box-shadow: var(--shadow-soft); }
.faq-item summary {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-num {
  font-family: var(--font-head); font-weight: 800; font-size: 0.85rem;
  color: var(--teal-400); flex-shrink: 0; width: 26px;
}
.faq-q { font-weight: 600; color: var(--ink); flex: 1; font-size: 1.02rem; }
.faq-toggle {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--teal-50); color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
}
.faq-item[open] .faq-toggle { transform: rotate(180deg); background: var(--teal-400); color: var(--black); }
.faq-a { padding: 0 0 22px 42px; margin: 0; font-size: 0.95rem; }

/* Services grid */
.grid-3 { display: grid; gap: 24px; grid-template-columns: 1fr; margin-top: 48px; }
@media (min-width: 700px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: 32px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--teal-50); color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.4rem;
}
.card a.card-link { font-weight: 600; color: var(--clay-600); display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; }

/* About — mission statement */
.mission-section {
  background: var(--cream-deep); color: var(--ink);
  padding: 60px 0;
}
.panel-cream {
  position: relative; overflow: hidden;
  background: var(--cream-deep);
}
.panel-cream::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../img/pattern-flower-grey.png");
  background-repeat: repeat; background-size: 1920px auto;
  opacity: 0.08; pointer-events: none;
}
.panel-cream > .container { position: relative; z-index: 1; }
.mission-section h2 { color: var(--ink); }
.mission-statement {
  max-width: 880px; margin: 26px auto 0;
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.5;
  letter-spacing: -0.01em; color: rgba(28,34,31,0.85);
}
.mission-highlight {
  color: var(--teal-600); font-weight: 800;
}
.mission-rule {
  display: flex; justify-content: center; margin: 40px 0 24px;
}
.mission-rule span {
  width: 64px; height: 3px; border-radius: 2px;
  background: var(--teal-400);
}
.mission-rules-grid {
  display: grid; gap: 24px; grid-template-columns: 1fr;
  margin-top: 44px; text-align: left;
}
@media (min-width: 700px) { .mission-rules-grid { grid-template-columns: repeat(3, 1fr); } }
.mission-rule-card {
  position: relative; overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(28,34,31,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.mission-rule-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-400);
  box-shadow: var(--shadow-soft);
}
.mission-rule-num {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 2.4rem; line-height: 1; color: var(--teal-400);
}
.mission-rule-card h3 { margin: 14px 0 10px; font-size: 1.15rem; color: var(--ink); }
.mission-rule-card p { margin: 0; font-size: 0.95rem; line-height: 1.65; color: var(--ink-soft); }
.mission-attribution {
  margin: 0; font-style: italic; color: var(--ink-soft);
  font-size: 0.92rem;
}

/* Team — department tabs */
.team-dept-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 32px;
}
.team-dept-tab {
  --tab-color: var(--ink-soft);
  padding: 9px 22px; border-radius: 999px;
  border: 2px solid var(--tab-color);
  background: var(--white); color: var(--tab-color);
  font-size: 0.85rem; font-weight: 700; cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.team-dept-tab.dept-owner { --tab-color: #c97b4a; }
.team-dept-tab.dept-office { --tab-color: #e0699e; }
.team-dept-tab.dept-sales { --tab-color: #4f8fdb; }
.team-dept-tab.dept-build { --tab-color: var(--gold); }
.team-dept-tab.dept-media { --tab-color: #9066c9; }
.team-dept-tab.active { background: var(--tab-color); color: var(--white); }
.team-dept-contact {
  margin: 16px 0 0; font-size: 0.88rem; color: var(--ink-soft);
}
.team-dept-contact a { color: var(--teal-600); font-weight: 600; }
.team-card-v2.is-hidden { display: none; }
.team-card-v2[data-dept="owner"] { border-top: 4px solid #c97b4a; }
.team-card-v2[data-dept="office"] { border-top: 4px solid #e0699e; }
.team-card-v2[data-dept="sales"] { border-top: 4px solid #4f8fdb; }
.team-card-v2[data-dept="build"] { border-top: 4px solid var(--gold); }
.team-card-v2[data-dept="media"] { border-top: 4px solid #9066c9; }
.team-role-pill.dept-pill-owner { color: #c97b4a; background: rgba(201,123,74,0.14); border-color: rgba(201,123,74,0.32); }
.team-role-pill.dept-pill-office { color: #e0699e; background: rgba(224,105,158,0.14); border-color: rgba(224,105,158,0.32); }
.team-role-pill.dept-pill-sales { color: #4f8fdb; background: rgba(79,143,219,0.14); border-color: rgba(79,143,219,0.32); }
.team-role-pill.dept-pill-build { color: var(--gold); background: rgba(242,177,52,0.14); border-color: rgba(242,177,52,0.32); }
.team-role-pill.dept-pill-media { color: #9066c9; background: rgba(144,102,201,0.14); border-color: rgba(144,102,201,0.32); }
.team-photo-placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, #16201e, #0a0a0a);
  border: 2px dashed rgba(144,102,201,0.4);
}
.team-photo-placeholder span {
  font-family: var(--font-head); font-weight: 800; font-size: 2.6rem;
  color: #9066c9; opacity: 0.75;
}

/* Team — modern duotone profile cards */
.team-grid-v2 {
  display: grid; gap: 22px; margin-top: 48px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 210px));
  justify-content: center;
}
.team-card-v2 {
  position: relative; text-align: left;
  background: var(--black); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s ease;
}
.team-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 46px rgba(10,10,10,0.4), 0 0 0 1px var(--teal-400);
}
.team-photo-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #16201e; }
.team-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: grayscale(85%) brightness(0.9) contrast(1.08);
  transition: filter 0.6s ease, transform 0.7s ease;
}
.team-card-v2:hover .team-photo-wrap img {
  filter: grayscale(0%) brightness(1) contrast(1.03);
  transform: scale(1.07);
}
.team-photo-fallback {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--teal-400);
  background: linear-gradient(160deg, #16201e, #0a0a0a);
}
.team-photo-wrap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 -60px 50px -20px rgba(0,0,0,0.55);
}
.team-index {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  color: rgba(250,246,239,0.85); background: rgba(10,10,10,0.55); backdrop-filter: blur(4px);
  padding: 4px 9px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.12);
}
.team-info { position: relative; overflow: hidden; padding: 18px 18px 20px; }
.team-info::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../img/pattern-flower-grey.png");
  background-repeat: repeat; background-size: 340px auto;
  opacity: 0.09; pointer-events: none;
}
.team-info > * { position: relative; z-index: 1; }
.team-role-pill {
  display: inline-block; margin-bottom: 10px;
  font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--teal-400); background: rgba(57,185,178,0.14);
  border: 1px solid rgba(57,185,178,0.32); padding: 4px 10px; border-radius: 999px;
}
.team-info h3 { color: var(--cream); font-size: 1rem; margin-bottom: 8px; }
.team-info p { color: rgba(250,246,239,0.6); font-size: 0.85rem; line-height: 1.6; margin-bottom: 0; }

/* Service cards (homepage "Our expertise", service-area pages) — full-bleed
   photo with text overlaid on a scrim, on every screen size. */
.card-photo {
  position: relative; padding: 0; overflow: hidden; text-align: left;
  min-height: 460px; border-radius: var(--radius-lg);
}
.card-photo-img {
  position: absolute; inset: 0; height: 100%;
  border-radius: var(--radius-lg);
}
.card-photo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card-photo:hover .card-photo-img img { transform: scale(1.05); }
.card-photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(8,10,9,0.92) 0%, rgba(8,10,9,0.55) 38%, rgba(8,10,9,0) 68%);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.card-photo .card-body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 26px 24px 28px;
}
.card-photo .icon.icon-sm { display: none; }
.card-photo h3 { color: var(--cream); font-size: 1.3rem; margin-bottom: 8px; }
.card-photo p { color: var(--teal-50); opacity: 0.92; font-size: 0.95rem; line-height: 1.65; margin-bottom: 4px; }
.card-photo a.card-link { color: var(--teal-400); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; }
.card-photo .tag { color: var(--teal-400); }

/* Blog */
.tag { font-size: 0.78rem; color: var(--clay-600); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-meta { font-size: 0.85rem; color: var(--ink-soft); margin-top: 12px; }
.prose { max-width: 720px; margin: 0 auto; }
.prose p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 22px; color: var(--ink); }

/* Blog post — framed hero image + article typography */
.blog-post-title { max-width: 820px; }
.blog-tag-pill {
  display: inline-block; background: var(--teal-50); color: var(--teal-600);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 4px;
}
.blog-hero-frame { max-width: 900px; margin: 0 auto 48px; }
.blog-hero-frame .frame-inner {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 7px solid var(--white);
  box-shadow: 0 28px 60px rgba(28,34,31,0.2), 0 0 0 1px rgba(28,34,31,0.06);
}
.blog-hero-frame img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

.blog-post-lede {
  font-family: var(--font-head); font-weight: 600;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem); line-height: 1.6;
  color: var(--ink); margin-bottom: 30px;
}
.prose h2 {
  font-size: clamp(1.3rem, 3vw, 1.65rem); font-weight: 800;
  margin: 46px 0 16px; padding-top: 4px;
}
.prose h2::before {
  content: ""; display: block; width: 42px; height: 3px;
  background: var(--clay-500); border-radius: 2px; margin-bottom: 16px;
}
.blog-pull-quote {
  margin: 36px 0; padding: 2px 0 2px 26px;
  border-left: 3px solid var(--clay-500);
  font-family: var(--font-head); font-style: italic; font-weight: 600;
  font-size: clamp(1.1rem, 2.4vw, 1.3rem); line-height: 1.55; color: var(--ink);
}
.blog-inline-image { margin: 36px 0 40px; }
.blog-inline-image img {
  width: 100%; border-radius: var(--radius-md); box-shadow: var(--shadow-soft); display: block;
}
.blog-inline-image figcaption {
  margin-top: 10px; font-size: 0.85rem; font-style: italic; color: var(--ink-soft); text-align: center;
}

/* Split section */
.split {
  display: grid; gap: 48px; align-items: center; grid-template-columns: 1fr;
}
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* Stats */
.stats { display: grid; gap: 24px; grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
@media (min-width: 700px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-size: 2.4rem; color: var(--ink); }
.stat .label { font-size: 0.85rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }

/* Testimonials */
.bg-panel { position: relative; overflow: hidden; background: var(--black); color: var(--cream); }
.bg-panel::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../img/pattern-flower-grey.png");
  background-repeat: repeat;
  background-size: 1920px auto;
  opacity: 0.08;
  pointer-events: none;
}
.bg-panel > .container { position: relative; z-index: 1; }
.bg-panel h2, .bg-panel .eyebrow { color: var(--cream); }
.bg-panel .lede { color: rgba(250,246,239,0.7); }
.testimonial-card {
  position: relative; z-index: 1;
  background: #161616; border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md); padding: 28px; height: 100%;
}
.testimonial-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card p { color: var(--cream); font-style: italic; }
.testimonial-card .who { font-weight: 600; color: var(--cream); font-style: normal; margin-top: 12px; }

/* CTA band */
.cta-band {
  background: var(--black); border-radius: var(--radius-lg);
  padding: 56px 40px; text-align: center; color: var(--white);
  margin: 0 24px;
}
.cta-band h2 { color: var(--cream); }
.cta-band p { color: rgba(250,246,239,0.72); }
.cta-band .btn-primary { background: var(--white); color: var(--black); }
.cta-band .btn-primary:hover { background: var(--clay-500); color: var(--black); }

/* Footer */
.site-footer {
  background-color: var(--black);
  background-image: linear-gradient(to bottom, var(--black) 0%, rgba(10,10,10,0.55) 45%, rgba(10,10,10,0.15) 100%), url("../img/footer-texture.jpg");
  background-position: top, bottom center;
  background-size: 100% 100%, cover;
  background-repeat: no-repeat, no-repeat;
  color: rgba(250,246,239,0.65); padding: 64px 0 32px;
}
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-grid h4 { color: var(--cream); font-family: var(--font-body); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid a:hover { color: var(--clay-500); }
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18); color: var(--teal-100);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { background: var(--teal-400); border-color: var(--teal-400); color: var(--black); transform: translateY(-3px); }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: 0.85rem; color: rgba(250,246,239,0.5);
}
.footer-legal-links { display: flex; gap: 18px; }
.footer-legal-links a { color: rgba(250,246,239,0.5); }
.footer-legal-links a:hover { color: var(--teal-100); }
.footer-areas-list { display: flex; flex-direction: column; gap: 10px; }

/* Breadcrumb / page header */
.page-hero {
  padding: 56px 0 40px; background: var(--cream-deep);
  border-bottom: 1px solid rgba(28,34,31,0.06);
}
.breadcrumb { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 12px; }
.breadcrumb a { color: var(--teal-600); font-weight: 600; }

/* Service detail — full-bleed hero */
.service-hero-banner {
  position: relative; overflow: hidden;
  min-height: 440px;
  display: flex; align-items: flex-end;
  color: var(--cream);
}
.service-hero-bg { position: absolute; inset: 0; z-index: 0; }
.service-hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.about-hero-banner .service-hero-bg img { object-position: center 5%; }
.service-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.87) 100%);
}
.service-hero-inner { position: relative; z-index: 1; padding: 56px 0 52px; width: 100%; }
.service-hero-inner .breadcrumb { color: rgba(250,246,239,0.7); margin-bottom: 14px; }
.service-hero-inner .breadcrumb a { color: var(--cream); }
.service-hero-inner h1 { color: #f3f1ec; max-width: 700px; }
.service-hero-inner .lede { color: rgba(250,246,239,0.82); max-width: 600px; }
.service-hero-inner .hero-actions { margin-top: 28px; justify-content: flex-start; }
@media (min-width: 900px) { .service-hero-banner { min-height: 560px; } }
.about-hero-banner { min-height: 540px; }
@media (min-width: 900px) { .about-hero-banner { min-height: 700px; } }

/* Service areas — detail page */
.area-hero-banner { min-height: 480px; }
@media (min-width: 900px) { .area-hero-banner { min-height: 560px; } }
.area-quickbar { background: transparent; padding: 40px 0 56px; }
.area-quickbar-grid {
  display: grid; grid-template-columns: 1fr;
  max-width: 980px; margin: 0 auto;
  background: var(--white); border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(28,34,31,0.16), 0 2px 10px rgba(28,34,31,0.06);
}
@media (min-width: 800px) { .area-quickbar-grid { grid-template-columns: 0.8fr 1.35fr 1.3fr; align-items: stretch; } }
.area-quick-item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  padding: 30px 18px; border-bottom: 1px solid rgba(28,34,31,0.08); text-decoration: none; color: inherit;
  transition: background 0.15s;
}
.area-quick-item:hover { background: var(--cream); }
@media (min-width: 800px) {
  .area-quick-item { border-bottom: none; border-right: 1px solid rgba(28,34,31,0.08); justify-content: center; }
}
.area-quick-icon {
  width: 48px; height: 48px; border-radius: 50%; background: var(--teal-50); color: var(--teal-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.area-quick-label { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft); }
.area-quick-value { font-size: 1.1rem; font-weight: 700; color: var(--ink); }
.area-quick-value-email { font-size: 0.98rem; }
@media (min-width: 800px) { .area-quick-value-email { white-space: nowrap; } }
@media (max-width: 799px) { .area-quick-value-email { word-break: break-word; } }
.area-quick-map { min-height: 240px; }
.area-quick-map iframe,
.area-quick-map .map-radius-canvas { width: 100%; height: 100%; min-height: 240px; display: block; border: 0; }
.area-content-inner { max-width: 760px; margin: 0 auto; }
.area-content-inner .eyebrow { display: block; margin-bottom: 10px; }
.area-content-inner h2 { margin: 0 0 20px; }
.area-content-inner h3 { margin-top: 44px; margin-bottom: 14px; }
.area-content-inner p { margin-bottom: 16px; line-height: 1.75; }
.area-content-inner .check-list { margin: 22px 0 24px; }

.nearby-areas-panel {
  display: grid; grid-template-columns: 1fr; gap: 0;
  max-width: 860px; margin: 32px auto 0; text-align: left;
  background: var(--white); border: 1px solid rgba(28,34,31,0.1); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
}
@media (min-width: 700px) { .nearby-areas-panel { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.nearby-areas-map { width: 100%; height: 220px; }
@media (min-width: 700px) { .nearby-areas-map { height: 100%; min-height: 260px; } }
.nearby-areas-list { padding: 28px 30px 30px; display: flex; flex-direction: column; }
.nearby-areas-list .areas-list-grid { grid-template-columns: 1fr; gap: 2px; margin-top: 0; }
.nearby-areas-list .areas-list-grid a { padding: 9px 0; }
.nearby-areas-list .btn { margin-top: 20px; align-self: flex-start; }

/* Service detail */

.project-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); position: relative; }
.project-hero-img img { width: 100%; height: 520px; object-fit: cover; display: block; }

/* Project photo gallery — contained main photo + thumbnail strip */
.project-gallery { max-width: 820px; margin: 0 auto; }
.project-gallery-main {
  display: block; width: 100%; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft);
  padding: 0; margin: 0; border: none; background: none; cursor: zoom-in;
}
.project-gallery-main img { width: 100%; height: 440px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.project-gallery-main:hover img { transform: scale(1.03); }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 999; background: rgba(10,10,10,0.92);
  align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: var(--radius-sm); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close {
  position: absolute; top: 20px; right: 28px; background: none; border: none; color: var(--cream);
  font-size: 2.6rem; line-height: 1; cursor: pointer; padding: 8px 12px;
}
.lightbox-close:hover { color: var(--teal-400); }
.project-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.project-gallery-thumbs .gallery-thumb {
  padding: 0; margin: 0; background: none; cursor: pointer; border-radius: var(--radius-sm); overflow: hidden;
  border: 3px solid transparent; aspect-ratio: 4 / 3; opacity: 0.75; transition: opacity 0.2s ease, border-color 0.2s ease;
}
.project-gallery-thumbs .gallery-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.project-gallery-thumbs .gallery-thumb:hover { opacity: 1; }
.project-gallery-thumbs .gallery-thumb.active { opacity: 1; border-color: var(--teal-400); }
@media (max-width: 600px) {
  .project-gallery-main img { height: 300px; }
  .project-gallery-thumbs { grid-template-columns: repeat(4, 1fr); gap: 8px; }
}

.project-media-section { background: var(--white); padding: 40px 0 64px; }

/* Service-areas teaser (Home page) */
.areas-teaser {
  display: grid; gap: 0; margin-top: 40px;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card);
  background: var(--white);
}
@media (min-width: 900px) { .areas-teaser { grid-template-columns: 1.3fr 1fr; } }
.map-wrap.areas-teaser-map { height: 420px; width: 100%; margin-top: 0; border-radius: 0; box-shadow: none; }
.map-embed-crop { position: relative; overflow: hidden; }
.map-embed-crop iframe {
  position: absolute; top: -46px; left: 0;
  width: 100%; height: calc(100% + 46px);
  border: 0;
}
.areas-teaser-list {
  display: flex; flex-direction: column; max-height: 420px; overflow-y: auto;
  border-left: 1px solid rgba(28,34,31,0.08);
}
@media (max-width: 899px) { .areas-teaser-list { border-left: none; border-top: 1px solid rgba(28,34,31,0.08); } }
.areas-teaser-row {
  display: flex; align-items: center; gap: 14px; padding: 15px 22px;
  border-bottom: 1px solid rgba(28,34,31,0.07); transition: background 0.2s ease, padding-left 0.2s ease;
}
.areas-teaser-row:last-child { border-bottom: none; }
.areas-teaser-row:hover { background: var(--cream); padding-left: 28px; }
.areas-teaser-num {
  font-family: var(--font-head); font-weight: 800; font-size: 0.85rem; color: var(--teal-500);
  flex-shrink: 0; width: 26px;
}
.areas-teaser-name { flex: 1; font-weight: 600; font-size: 0.96rem; color: var(--ink); }
.areas-teaser-row svg {
  width: 15px; height: 15px; color: var(--ink-soft); flex-shrink: 0;
  opacity: 0; transform: translateX(-4px); transition: opacity 0.2s ease, transform 0.2s ease;
}
.areas-teaser-row:hover svg { opacity: 1; transform: translateX(0); color: var(--teal-500); }

/* Achievements grid (About page) */
.achievements-grid {
  display: grid; gap: 28px; grid-template-columns: 1fr; margin-top: 48px; text-align: left;
}
@media (min-width: 700px) { .achievements-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .achievements-grid { grid-template-columns: repeat(4, 1fr); } }
.achievement-card {
  position: relative; z-index: 1; background: #161616; border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.achievement-card:hover {
  transform: translateY(-6px); border-color: var(--teal-400);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45), 0 0 0 1px var(--teal-400);
}
.achievement-photo { position: relative; height: 180px; overflow: hidden; }
.achievement-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.achievement-card:hover .achievement-photo img { transform: scale(1.08); }
.achievement-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 40%, rgba(10,10,10,0.85) 100%);
}
.achievement-badge {
  position: absolute; bottom: 12px; left: 16px; z-index: 2;
  font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; color: var(--cream);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.achievement-body { padding: 22px 24px 26px; }
.achievement-body h3 { font-size: 1.05rem; line-height: 1.4; color: var(--cream); margin: 0 0 10px; }
.achievement-body p { font-size: 0.9rem; line-height: 1.6; color: rgba(250,246,239,0.65); margin: 0; }

.project-location-section p { color: rgba(250,246,239,0.72); }
.project-location-section .areas-list-grid a { color: var(--cream); border-bottom-color: rgba(255,255,255,0.15); }
.project-location-section .areas-list-grid a:hover { color: var(--teal-400); }
.project-location-section .map-wrap { border: 1px solid rgba(255,255,255,0.12); }

.project-spec-strip {
  display: flex; flex-wrap: wrap; gap: 28px 36px; margin: 22px auto 0; padding-top: 18px;
  border-top: 1px solid rgba(28,34,31,0.1);
  max-width: 820px;
}
.project-spec-strip .spec-item { display: flex; flex-direction: column; gap: 3px; }
.project-spec-strip .spec-label {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.07em; color: var(--ink-soft); font-weight: 700;
}
.project-spec-strip .spec-value { font-size: 0.88rem; font-weight: 700; color: var(--ink); }

.project-meta-bar { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }
.project-meta-bar .tag-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 999px;
  background: var(--white); border: 1px solid rgba(28,34,31,0.1);
  font-size: 0.85rem; font-weight: 700; color: var(--ink);
}
.project-meta-bar .tag-chip svg { width: 16px; height: 16px; color: var(--teal-600); }

/* Project details (specs) — construction spec-sheet styling */
.project-details-section { position: relative; overflow: hidden; background: var(--black); }
.project-details-section::before {
  content: "";
  position: absolute; inset: 0; z-index: 0;
  background-image: url("../img/pattern-flower-grey.png");
  background-repeat: repeat;
  background-size: 1920px auto;
  opacity: 0.08;
  pointer-events: none;
}
.project-details-section > .container { position: relative; z-index: 1; }
.project-details-section .eyebrow { color: var(--teal-400); }
.project-details-section h2 { color: var(--cream); }
.project-spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 36px; }
@media (min-width: 760px) { .project-spec-grid { grid-template-columns: repeat(4, 1fr); } }
.project-spec-card {
  background: var(--white); border: 1px solid transparent; border-radius: var(--radius-sm);
  padding: 24px 20px; display: flex; align-items: flex-start; gap: 14px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.35);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.project-spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(0,0,0,0.4), 0 0 0 2px var(--teal-400);
}
.project-spec-card .icon-circle {
  width: 42px; height: 42px; border-radius: 8px; background: var(--teal-400); color: var(--black);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.project-spec-card .icon-circle svg { width: 20px; height: 20px; }
.project-spec-card .project-spec-label {
  font-family: "Courier New", monospace; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--teal-600); font-weight: 700; margin-bottom: 5px;
}
.project-spec-card .project-spec-value { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--ink); line-height: 1.3; }

/* About this project section */
.project-about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 900px) { .project-about-grid { grid-template-columns: 1.6fr 1fr; } }
.project-about-copy .lead-text {
  font-family: "Fraunces", serif; font-weight: 500; font-style: italic;
  font-size: 1.35rem; line-height: 1.6; color: var(--ink); margin-bottom: 24px;
}
.project-about-copy p.body-text { font-size: 1.05rem; line-height: 1.85; color: var(--ink-soft); }
.project-about-sidebar { position: sticky; top: 24px; }
.check-list li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }

/* Material swatches */
.swatch-section-head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.swatch-section-head h3 {
  margin: 0; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 0.1em;
  padding-bottom: 10px; border-bottom: 2px solid var(--clay-500);
}
.swatch-category { color: var(--ink-soft); font-size: 0.85rem; margin: 0 0 10px; }
.swatch-grid {
  display: grid; gap: 22px; margin-top: 22px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 600px) { .swatch-grid { grid-template-columns: repeat(3, 1fr); } }
.swatch-grid-sm { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 600px) { .swatch-grid-sm { grid-template-columns: repeat(5, 1fr); } }
.swatch-card {
  border-radius: 16px; overflow: hidden; background: #f7f6f3;
  box-shadow: 0 10px 24px rgba(20,16,12,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  perspective: 800px;
}
.swatch-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(20,16,12,0.22); }
.swatch-card-img { aspect-ratio: 3/2; overflow: hidden; position: relative; }
.swatch-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.swatch-card:hover img { transform: scale(1.06) rotate(-0.4deg); }
.swatch-card-img::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15), inset 0 -30px 40px -20px rgba(0,0,0,0.35);
  pointer-events: none;
}
.swatch-caption { padding: 12px 16px 16px; display: flex; align-items: center; gap: 10px; }
.swatch-color-dot {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.6), 0 2px 6px rgba(0,0,0,0.2);
}
.swatch-caption-text { min-width: 0; }
.swatch-name { color: var(--ink); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em; }
.swatch-collection { color: var(--ink-soft); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.check-list li svg { flex-shrink: 0; color: var(--teal-600); margin-top: 3px; }

/* Projects */
.filter-bar-heading { margin-bottom: 18px; }
.filter-bar-heading h2 { margin-bottom: 0; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin: 32px 0 0; }
.projects-grid-section { padding-top: 36px; }
.filter-chip {
  padding: 8px 18px; border-radius: 999px; border: 1px solid rgba(28,34,31,0.15);
  background: var(--white); font-size: 0.88rem; font-weight: 600; cursor: pointer;
}
.filter-chip.active { background: var(--black); color: var(--cream); border-color: var(--black); }
.filter-chip-short { display: none; }
@media (max-width: 699px) {
  .filter-bar {
    gap: 8px; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding-bottom: 4px; margin-left: -24px; margin-right: -24px; padding-left: 24px; padding-right: 24px;
    scrollbar-width: none;
  }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-chip { padding: 7px 14px; font-size: 0.82rem; flex-shrink: 0; white-space: nowrap; }
  .page-hero-tight { padding: 22px 0 20px; }
  .filter-bar-section { padding-top: 20px; }
  .projects-grid-section { padding-top: 24px; }
  .projects-grid-section .grid-3 { margin-top: 20px; }
}
.project-card { border-radius: var(--radius-md); overflow: hidden; background: var(--white); box-shadow: var(--shadow-card); }
.project-card img { aspect-ratio: 4/3; object-fit: cover; }
.project-card .body { padding: 20px 22px; }
.project-card .tag { font-size: 0.78rem; color: var(--clay-600); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

/* Reviews */
.review-card { background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-card); padding: 26px; }
.review-card .stars { color: var(--gold); margin-bottom: 10px; letter-spacing: 2px; }
.review-source { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--ink-soft); margin-top: 14px; }

/* Reviews page — dark, patterned Google-review-style cards */
.reviews-panel { position: relative; overflow: hidden; }
.reviews-panel::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: url("../img/pattern-flower-grey.png");
  background-repeat: repeat; background-size: 1920px auto;
  opacity: 0.06; pointer-events: none;
}
.reviews-panel > .container { position: relative; z-index: 1; }
.review-card-dark {
  display: flex; flex-direction: column; gap: 16px;
  background: var(--black);
  border: 1px solid rgba(57,185,178,0.22);
  border-radius: var(--radius-md);
  padding: 24px;
}
.review-card-top { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-800); color: var(--teal-200);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: var(--font-head); font-size: 1rem;
}
.review-who { display: flex; flex-direction: column; line-height: 1.35; margin-right: auto; }
.review-who strong { color: var(--cream); font-size: 0.92rem; font-weight: 600; }
.review-who span { color: rgba(250,246,239,0.5); font-size: 0.74rem; }
.review-google-badge { flex-shrink: 0; opacity: 0.9; display: flex; }
.stars-row { display: flex; align-items: center; gap: 8px; }
.review-card-dark .stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }
.review-verified {
  width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal-400); color: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.review-verified svg { width: 11px; height: 11px; }
.review-card-dark p { color: rgba(250,246,239,0.85); font-style: italic; margin: 0; line-height: 1.65; font-size: 0.95rem; }
.review-card-link {
  color: var(--teal-400); font-weight: 600; font-size: 0.85rem;
  display: inline-flex; align-items: center; gap: 6px; margin-top: auto;
}

.reviews-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 40px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.reviews-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviews-scroll 100s linear infinite;
}
.reviews-track .review-card-dark {
  width: 320px;
  flex-shrink: 0;
}
@keyframes reviews-scroll {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (max-width: 699px) {
  .reviews-track .review-card-dark { width: 260px; }
  .reviews-track { animation-duration: 70s; }
}
.google-summary {
  display: flex; align-items: center; gap: 20px; background: var(--white);
  border-radius: var(--radius-md); box-shadow: var(--shadow-card); padding: 24px 28px; margin-top: 40px; flex-wrap: wrap;
}
.google-summary .score { font-family: var(--font-head); font-size: 2.6rem; color: var(--ink); }
.google-summary-dark {
  position: relative; overflow: hidden;
  background: var(--black); color: var(--cream);
}
.google-summary-dark::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: url("../img/pattern-flower-grey.png");
  background-repeat: repeat; background-size: 1920px auto;
  opacity: 0.07; pointer-events: none;
}
.google-summary-dark > * { position: relative; z-index: 1; }
.google-summary-dark .score { color: var(--cream); }
.google-summary-dark p { color: rgba(250,246,239,0.7); }

/* Parallax bottom CTA (site-wide, before footer) */
.parallax-cta {
  position: relative; overflow: hidden;
  min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--cream);
  background-image: url("../img/cta-parallax-deck.jpg");
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.parallax-cta::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(8,8,8,0.62); z-index: 0;
}
.parallax-cta-inner { position: relative; z-index: 1; max-width: 720px; padding: 60px 24px; }
.parallax-cta h2 {
  font-family: var(--font-body); font-weight: 900;
  font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.08;
  color: #e9e7e2; margin-bottom: 20px;
}
.parallax-cta p {
  color: rgba(250,246,239,0.85); font-size: 1.1rem;
  max-width: 560px; margin: 0 auto 32px;
}
.parallax-cta .btn svg { width: 16px; height: 16px; }
@media (max-width: 700px) {
  .parallax-cta { background-attachment: scroll; min-height: 440px; }
}

/* Service areas + map */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); height: 480px; margin-top: 40px; }

/* Project explorer (scroll list + map) */
.project-explorer { display: grid; gap: 28px; grid-template-columns: 1fr; margin-top: 32px; }
@media (min-width: 900px) { .project-explorer { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.explorer-tabs { display: none; }
@media (max-width: 899px) {
  .explorer-tabs { display: flex; gap: 10px; margin-top: 28px; }
  .project-explorer { margin-top: 18px; }
  .project-explorer[data-active="list"] .project-explorer-map { display: none; }
  .project-explorer[data-active="map"] .project-scroll-list { display: none; }
  .project-explorer[data-active="map"] .project-explorer-map { height: 440px; }
}
.project-scroll-list {
  border: 1px solid rgba(28,34,31,0.12); border-radius: var(--radius-lg);
  background: var(--white); overflow-y: auto; height: 480px;
}
.project-row {
  display: flex; gap: 16px; padding: 18px 20px; border-bottom: 1px solid rgba(28,34,31,0.08);
  text-decoration: none; color: inherit; transition: background 0.15s;
}
.project-scroll-list .project-row:last-child { border-bottom: none; }
.project-row:hover { background: var(--cream); }
.project-row img { width: 92px; height: 92px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.project-row h3 { font-size: 1.02rem; margin: 0 0 4px; }
.project-row p.desc {
  font-size: 0.86rem; color: var(--ink-soft); margin: 0 0 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.project-explorer-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); height: 480px; }
@media (max-width: 899px) { .project-explorer-map { height: 340px; } }
.leaflet-popup-content-wrapper { border-radius: 12px; font-family: var(--font-body); }
.mapboxgl-popup-content { border-radius: 12px; font-family: var(--font-body); padding: 14px 16px; box-shadow: var(--shadow-card); }
.mapboxgl-popup-content strong { color: var(--ink); }
.mapboxgl-popup-content a { color: var(--teal-600); font-weight: 600; }
.areas-list-grid { display: grid; gap: 10px 24px; grid-template-columns: repeat(2, 1fr); margin-top: 32px; }
@media (min-width: 700px) { .areas-list-grid { grid-template-columns: repeat(3, 1fr); } }
.areas-list-grid a { padding: 8px 0; border-bottom: 1px solid rgba(28,34,31,0.08); font-weight: 500; }
.areas-list-grid a:hover { color: var(--clay-600); }

/* Contact */
.contact-grid { display: grid; gap: 48px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1px solid rgba(28,34,31,0.18); font-family: var(--font-body); font-size: 1rem;
  background: var(--white);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.contact-info-card { background: var(--black); color: var(--cream); border-radius: var(--radius-lg); padding: 36px; }
.contact-info-card a { color: var(--cream); font-weight: 600; }
.contact-info-card .row { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }

/* Contact — map + help panel */
.contact-map-panel {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft);
}
@media (min-width: 900px) { .contact-map-panel { grid-template-columns: 1.2fr 1fr; } }
.contact-map-embed { height: 340px; margin-top: 0; border-radius: 0; box-shadow: none; }
@media (min-width: 900px) { .contact-map-embed { height: 460px; } }
.contact-help { background: var(--cream-deep); padding: 40px 36px; }
.contact-help h2 { margin-bottom: 28px; }
.contact-help-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-help-item:last-child { margin-bottom: 0; }
.contact-help-icon {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--white); color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card);
}
.contact-help-label { display: block; font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 4px; }
.contact-help-item > div:last-child a { font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.hours-table { border-collapse: collapse; margin-top: 2px; }
.hours-table td { padding: 3px 0; font-size: 0.94rem; }
.hours-table td:first-child { font-weight: 600; padding-right: 22px; }
.hours-table td:last-child { color: var(--ink-soft); }
.hours-table em { font-style: italic; color: var(--ink-soft); opacity: 0.75; }

/* Utility */
.mt-0 { margin-top: 0; }
.text-cream { color: var(--cream); }
.opacity-90 { opacity: 0.9; }
