/* ============================================================
   Effect Joinery — Commercial Fit-Out Contractor
   Design system: Black / Gold. Montserrat + Inter + Playfair Display (quotes only).
   Signature motif: the joinery slat — a vertical batten rhythm echoed in
   dividers, the scope-of-works list markers, and section rules.
   ============================================================ */

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

:root {
  --black: #000000;
  --gold: #C9A15C;
  --gold-light: #D8B878;
  --gold-pale: #F5E9D3;
  --white: #FFFFFF;
  --off-white: #FAF9F7;
  --grey-100: #F2F0EC;
  --grey-200: #E0DDD6;
  --grey-400: #9A9490;
  --grey-600: #5C5754;
  --grey-800: #2A2825;

  /* Luxury redesign tokens — homepage dark sections */
  --lux-bg: #0E0D0B;
  --lux-bg-alt: #12100D;
  --lux-bg-deep: #0B0A08;
  --lux-card: #181511;
  --lux-ivory: #F2EDE3;
  --lux-ivory-muted: rgba(242,237,227,0.68);
  --lux-ivory-card: #F5F1E8;
  --lux-ivory-card-text: #1A1713;
  --lux-gold: #C9A15C;
  --lux-gold-light: #D8B878;
  --lux-gold-highlight: #E8CE96;
  --lux-gold-deep: #B98A44;

  --max: 1200px;
  --gutter: clamp(24px, 5vw, 60px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--off-white);
  color: var(--black);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--black);
}

.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: '';
  width: 3px;
  height: 14px;
  background: var(--gold);
  display: inline-block;
  transform: skewX(-12deg);
}

.section-title {
  font-size: clamp(30px, 3.6vw, 46px);
  margin-top: 14px;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.lede {
  font-size: 17px;
  color: var(--grey-600);
  max-width: 620px;
  margin-top: 18px;
  line-height: 1.75;
}

.on-dark .lede { color: var(--grey-400); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 2px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(100deg, var(--lux-gold-deep), var(--gold-light));
  color: #0E0D0B;
  transition: filter 0.25s ease;
}
.btn-gold:hover { filter: brightness(1.12); background: linear-gradient(100deg, var(--lux-gold-deep), var(--gold-light)); transform: none; }

/* Header "Get In Touch" — gold outline, fills solid gold on hover */
.btn-header {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  background: transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-header:hover { background: var(--gold); color: #0E0D0B; }

.btn-outline { background: transparent; border: 1px solid rgba(242,237,227,0.35); color: var(--lux-ivory); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-dark { background: transparent; border: 1px solid var(--grey-200); color: var(--black); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

.btn-arrow::after { content: '→'; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201,161,92,0.18);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 74px; width: auto; margin: -14px 0; }

.main-nav { display: flex; align-items: center; gap: 4px; }

.main-nav a {
  font-family: 'Jost', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.68);
  padding: 10px 16px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--lux-ivory); }
.main-nav a:hover { color: var(--gold-light); }
.main-nav a[aria-current="page"] { color: var(--lux-ivory); border-bottom-color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 20px; }

.header-tel {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.header-tel span { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 35%, rgba(0,0,0,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0 96px;
  width: 100%;
}

.hero h1 {
  font-size: clamp(36px, 5.6vw, 68px);
  max-width: 15ch;
  margin-top: 20px;
  color: var(--white);
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero .lede { color: rgba(255,255,255,0.82); font-size: 18px; max-width: 46ch; }

.hero-actions { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }

/* ---------- Slat divider (signature motif) ---------- */
.slats {
  display: flex;
  gap: 5px;
  height: 22px;
  align-items: flex-end;
}

.slats span {
  width: 3px;
  background: var(--gold);
  opacity: 0.9;
}
.slats span:nth-child(1) { height: 60%; }
.slats span:nth-child(2) { height: 100%; }
.slats span:nth-child(3) { height: 45%; }
.slats span:nth-child(4) { height: 80%; }
.slats span:nth-child(5) { height: 30%; }

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--lux-bg-alt);
  border-top: 1px solid rgba(201,161,92,0.25);
}

.stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px var(--gutter);
}

.stat {
  padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.stat:first-child { border-left: none; padding-left: 0; }

.stat-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--gold);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 12px;
  color: var(--grey-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-header { max-width: 720px; margin-bottom: 56px; }
.on-dark { background: var(--black); }
.on-off { background: var(--off-white); }

/* ---------- Scope of works (services list) ---------- */
.scope-list { border-top: 1px solid var(--grey-200); }

.scope-row {
  display: grid;
  grid-template-columns: 64px 1fr 1.4fr;
  gap: 32px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--grey-200);
  transition: background 0.2s ease;
}

.scope-row:hover { background: rgba(201,161,92,0.05); }

.scope-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--gold);
  padding-top: 4px;
}

.scope-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 19px;
}

.scope-desc { color: var(--grey-600); font-size: 15px; }

.scope-tag {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 3px 9px;
}

/* ---------- Sectors ---------- */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.sector-tile {
  background: var(--lux-card);
  padding: 44px 28px;
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.sector-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 28px;
  width: 3px; height: 100%;
  background: repeating-linear-gradient(to bottom, var(--gold) 0 18px, transparent 18px 30px);
  opacity: 0.35;
}

.sector-num {
  font-family: 'Outfit', sans-serif;
  color: var(--grey-600);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: auto;
}

.sector-tile h3 {
  color: var(--white);
  font-size: 22px;
  margin-top: 24px;
}

.sector-tile p {
  color: var(--grey-400);
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.6;
}

/* ---------- Work / case study ---------- */
.work-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.photo-tile { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.photo-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.photo-tile:hover img { transform: scale(1.05); }

.photo-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, max-content));
  justify-content: flex-start;
  column-gap: 56px;
  row-gap: 20px;
  margin: 28px 0 30px;
  padding: 24px 0;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}

.case-meta-label {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-600);
}

.case-meta-val {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-top: 4px;
}

.case-body p { color: var(--grey-600); margin-bottom: 14px; font-size: 15px; }
.case-body strong { color: var(--black); }

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.testi {
  background: var(--lux-card);
  border: 1px solid rgba(201,161,92,0.18);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.3s;
}

.testi:hover { border-color: rgba(201,161,92,0.5); }

.testi-quote {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 17.5px;
  color: rgba(242,237,227,0.88);
  line-height: 1.6;
  flex: 1;
}

.testi-quote::before { content: '\201C'; color: var(--gold); }
.testi-quote::after { content: '\201D'; color: var(--gold); }

.testi-attr {
  margin-top: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: uppercase;
}

.testi-attr span {
  display: block;
  color: var(--grey-400);
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 3px;
}

/* ---------- Credentials strip ---------- */
.creds {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.cred-chip {
  border: 1px solid var(--grey-200);
  padding: 10px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-800);
}

.on-dark .cred-chip { border-color: rgba(255,255,255,0.18); color: var(--grey-400); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--lux-bg);
  color: var(--lux-ivory);
  padding: 110px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(185,138,68,0.16), rgba(14,13,11,0) 70%);
  pointer-events: none;
}

.cta-band .wrap {
  position: relative;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-band .eyebrow { justify-content: center; }
.cta-band h2 { font-size: clamp(28px, 3.4vw, 42px); max-width: 14ch; color: var(--lux-ivory); }
.cta-band .lede { color: var(--lux-ivory-muted); text-align: center; }
.cta-band .hero-actions { justify-content: center; margin-top: 16px; }
.cta-band .btn-outline { border-color: rgba(201,161,92,0.45); color: var(--gold-light); }
.cta-band .btn-outline:hover { border-color: var(--gold); background: rgba(201,161,92,0.1); color: var(--gold-light); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--grey-400);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid img { height: 86px; margin: -16px 0 -8px -8px; }
.footer-grid p { font-size: 13px; line-height: 1.7; max-width: 32ch; }

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-col a, .footer-col li {
  display: block;
  font-size: 14px;
  color: var(--grey-400);
  margin-bottom: 10px;
  list-style: none;
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12px;
  color: var(--grey-600);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Sub-page hero (Services / About / Contact) ---------- */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 160px 0 80px;
  border-bottom: 1px solid rgba(201,161,92,0.2);
}

.page-hero h1 { font-size: clamp(32px, 4.4vw, 54px); margin-top: 16px; color: var(--white); max-width: 18ch; }

/* ---------- Value pillars (About) ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  border-top: 3px solid var(--gold);
  padding: 32px 28px;
  background: var(--white);
  border-left: 1px solid var(--grey-200);
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}

.pillar-card h3 { font-size: 19px; margin-bottom: 12px; }
.pillar-card p { color: var(--grey-600); font-size: 14px; }

/* ---------- Two column text/image ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5/4; }

.split-copy p { color: var(--grey-600); margin-bottom: 16px; font-size: 15.5px; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.info-list { margin-top: 32px; }
.info-item { padding: 20px 0; border-bottom: 1px solid var(--grey-200); }
.info-item:first-child { border-top: 1px solid var(--grey-200); }
.info-label { font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.info-val { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 17px; margin-top: 6px; }

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--grey-800);
}

.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--grey-200);
  background: var(--white);
  padding: 14px 16px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--black);
}

.form-field input:focus, .form-field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-note { font-size: 13px; color: var(--grey-600); margin-top: 4px; }

/* Visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .main-nav.nav-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: var(--black);
    border-bottom: 1px solid rgba(201,161,92,0.25);
    padding: 8px var(--gutter) 20px;
  }
  .main-nav.nav-open a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-toggle { display: flex; }
  .stat-strip .wrap { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .scope-row { grid-template-columns: 40px 1fr; }
  .scope-row > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .stat-strip .wrap { grid-template-columns: 1fr 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .case-meta { grid-template-columns: 1fr 1fr; }
}

/* ---------- Hero video ---------- */
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Client strip ---------- */
.client-strip {
  background: var(--off-white);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  padding: 44px 0;
}

.client-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 44px;
}

.client-strip-label {
  width: 100%;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.client-name {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--grey-400);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 960px; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: var(--lux-card);
  border: 1px solid rgba(201,161,92,0.18);
  transition: border-color 0.25s;
}
.faq-item:hover, .faq-item.open { border-color: rgba(201,161,92,0.45); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  min-height: 44px;
  padding: 24px 30px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--lux-ivory);
}

.faq-q::after {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: none;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-q::after { transform: rotate(225deg) translate(-3px, -3px); }

.faq-a {
  display: none;
  padding: 0 30px 26px;
  color: var(--lux-ivory-muted);
  font-weight:400;
  font-size: 15.5px;
  line-height: 1.85;
  max-width: 70ch;
}

.faq-item.open .faq-a { display: block; }

/* ---------- Featured projects ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.project-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--grey-800);
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img { transform: scale(1.04); }

.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 60%);
}

.project-info {
  position: relative;
  z-index: 1;
  padding: 26px 28px;
  width: 100%;
}

.project-info h3 { color: var(--white); font-size: 21px; }

.project-chips { display: flex; gap: 10px; margin-top: 10px; flex-wrap: wrap; }

.project-chip {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(201,161,92,0.5);
  padding: 4px 10px;
}

@media (max-width: 768px) {
  .projects-grid { grid-template-columns: 1fr; }
}

/* ---------- Media slot (image that upgrades to video) ---------- */
.media-slot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5/4;
}

.media-slot img, .media-slot video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#joinery + #work { padding-top: 0; }

/* ---------- Hero slideshow (Ken Burns) ---------- */
.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroCycle 28s infinite;
  will-change: opacity, transform;
}

.hero-slideshow img:nth-child(1) { animation-delay: 0s; }
.hero-slideshow img:nth-child(2) { animation-delay: 7s; }
.hero-slideshow img:nth-child(3) { animation-delay: 14s; }
.hero-slideshow img:nth-child(4) { animation-delay: 21s; }

@keyframes heroCycle {
  0%   { opacity: 0; transform: scale(1) translateX(0); }
  6%   { opacity: 1; }
  25%  { opacity: 1; }
  33%  { opacity: 0; transform: scale(1.12) translateX(-1.5%); }
  100% { opacity: 0; transform: scale(1) translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slideshow img { animation: none; }
  .hero-slideshow img:first-child { opacity: 1; }
}

/* ---------- Gentle drift on the joinery media panel ---------- */
.media-slot img {
  animation: slowZoom 18s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .media-slot img { animation: none; }
}

/* ============ SIM-style homepage additions ============ */

/* Centered statement hero */
.hero-center { align-items: center; text-align: center; }
.hero-center .hero-content { padding: 120px 0; display: flex; flex-direction: column; align-items: center; }
.hero-center h1 { max-width: 22ch; font-size: clamp(34px, 5vw, 62px); text-transform: uppercase; letter-spacing: 0.01em; }
.hero-center .hero-sub {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(13px, 1.6vw, 17px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 26px;
}
.hero-center .hero-sub em { font-style: normal; color: var(--gold); }
.hero-center .hero-actions { justify-content: center; }

/* Intro / value proposition */
.intro { text-align: center; }
.intro .section-header { margin: 0 auto 32px; }
.intro .lede { margin-left: auto; margin-right: auto; }

/* Carousel (projects + testimonials) */
.carousel { position: relative; }
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track > * { scroll-snap-align: start; flex: 0 0 auto; }

.carousel-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 22px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid var(--grey-200);
  background: var(--white);
  color: var(--black);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); }
.on-dark .carousel-btn { background: transparent; border-color: rgba(255,255,255,0.25); color: var(--white); }
.on-dark .carousel-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }

/* Project cards */
.proj-card {
  width: min(420px, 82vw);
  background: var(--white);
  border: 1px solid var(--grey-200);
  display: flex;
  flex-direction: column;
}
.proj-card .proj-img { aspect-ratio: 16/10; overflow: hidden; }
.proj-card .proj-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.proj-card:hover .proj-img img { transform: scale(1.05); }
.proj-body { padding: 26px 28px 30px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.proj-body h3 { font-size: 20px; }
.proj-body p { color: var(--grey-600); font-size: 14px; flex: 1; }
.proj-link {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
}
.proj-link:hover { color: var(--black); }

/* Service image cards (4-up) */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.svc-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--grey-800);
}
.svc-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.svc-card:hover img { transform: scale(1.06); }
.svc-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.1) 55%);
}
.svc-info { position: relative; z-index: 1; padding: 24px; width: 100%; }
.svc-info h3 { color: var(--white); font-size: 18px; line-height: 1.25; }
.svc-info .proj-link { display: inline-block; margin-top: 8px; color: var(--gold-light); }
.svc-card:hover .svc-info .proj-link { color: var(--white); }

/* Testimonial slides sized for carousel */
.testi-slide {
  width: min(560px, 86vw);
  background: var(--grey-800);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
}

@media (max-width: 980px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { aspect-ratio: 16/10; }
}

/* Client logo images */
.client-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.2s ease, opacity 0.2s ease;
}
.client-logo:hover { filter: none; opacity: 1; }

/* ---------- Logo marquee ---------- */
.client-strip .client-strip-label { margin-bottom: 26px; }

.marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  padding-right: 72px;
  animation: marquee 30s linear infinite;
}

.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
  .marquee-track img[aria-hidden="true"] { display: none; }
  .marquee { mask-image: none; -webkit-mask-image: none; }
}

/* Logo marquee — dark background, logos sit directly on it (no card) */
.client-logo {
  filter: none;
  opacity: 1;
  background: transparent;
  border: none;
  border-radius: 0;
  height: 60px;
  width: 200px;
  object-fit: contain;
  padding: 10px 20px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.client-logo:hover { transform: scale(1.15); filter: drop-shadow(0 10px 24px rgba(0,0,0,0.5)); }

/* ============ ui-ux-pro-max audit fixes (21.07.26) ============ */
/* Gold on white fails WCAG 4.5:1 (~2.3:1). Use darker gold ink for text
   on light backgrounds; keep bright brand gold on dark. */
:root { --gold-ink: #8C6A26; }

.eyebrow, .proj-link, .scope-num, .info-label, .client-strip-label,
.section-title em, .faq-q::after { color: var(--gold-ink); }
.eyebrow::before { background: var(--gold-ink); }

.on-dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow,
.on-dark .section-title em, .hero h1 em, .page-hero h1 em,
.svc-info .proj-link, .sector-num, .testi-attr,
.on-dark .proj-link,
.lux-dark .eyebrow, .lux-dark .proj-link, .lux-dark .scope-num,
.lux-dark .info-label, .lux-dark .client-strip-label,
.lux-dark .section-title em, .lux-dark .faq-q::after { color: var(--gold); }
.on-dark .eyebrow::before, .hero .eyebrow::before, .page-hero .eyebrow::before,
.lux-dark .eyebrow::before { background: var(--gold); }

/* Exaggerated-minimalism hero: bigger, tighter display type */
.hero-center h1 { font-size: clamp(38px, 6vw, 78px); letter-spacing: -0.03em; }

/* Keyboard/touch polish */
.faq-q { min-height: 44px; }
.carousel-btn { min-width: 46px; min-height: 46px; }

/* ============ Luxury Redesign — new homepage sections ============ */

.lux-bg-alt { background: var(--lux-bg-alt); }
.lux-bg-deep { background: var(--lux-bg-deep); }

/* Service card roman numeral */
.svc-num {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(232,206,150,0.85);
  z-index: 1;
}

/* Comprehensive services (3-col, icons) */
.comp-services {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 60px;
  align-items: start;
}

.comp-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.comp-col.offset { padding-top: 70px; }

.comp-col h3 {
  font-size: 25px;
  text-transform: uppercase;
  line-height: 1.25;
}

.comp-col p {
  font-size: 15.5px;
  font-weight:400;
  line-height: 1.85;
  color: var(--lux-ivory-muted);
}

/* Why choose — icon row + ivory cards */
.why-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  margin-bottom: 100px;
}

.why-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.why-icon-item div {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.5;
  color: var(--lux-ivory);
}

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.why-card {
  background: var(--lux-ivory-card);
  color: var(--lux-ivory-card-text);
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  align-items: center;
}

.why-card-rule { display: block; width: 40px; height: 2px; background: var(--lux-gold-deep); }

.why-card h3 {
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1.25;
  color: var(--lux-ivory-card-text);
}

.why-card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(26,23,19,0.75);
}

/* Homepage case-study meta line (reuses .project-card / .project-chip) */
.project-meta {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lux-gold-light);
  display: block;
  margin-bottom: 4px;
}

/* Video showcase */
.showcase-frame {
  position: relative;
  border: 1px solid rgba(201,161,92,0.22);
  background: var(--lux-bg-deep);
}

.showcase-frame video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 76vh;
  background: var(--lux-bg-deep);
}

.showcase-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.showcase-chip {
  padding: 9px 18px;
  border: 1px solid rgba(201,161,92,0.28);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,237,227,0.72);
}

@media (max-width: 980px) {
  .comp-services { grid-template-columns: 1fr; gap: 48px; }
  .comp-col.offset { padding-top: 0; }
  .why-icons { grid-template-columns: repeat(2, 1fr); }
  .why-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .why-icons { grid-template-columns: 1fr; }
  .why-card { padding: 40px 28px; }
}

/* ---------- Luxury dark wrapper — text colour fixes ---------- */
.lux-dark h1, .lux-dark h2, .lux-dark h3, .lux-dark h4 { color: var(--lux-ivory); }
.lux-dark .lede { color: var(--lux-ivory-muted); }
.lux-dark .scope-name, .lux-dark .case-meta-val { color: var(--lux-ivory); }
.lux-dark .project-card h3 { color: var(--lux-ivory); }
.lux-dark .faq-q { color: var(--lux-ivory); }

/* Fix: why-card headings must stay dark (they sit on the ivory card, not the dark wrapper) */
.lux-dark .why-card h3 { color: var(--lux-ivory-card-text); }
.lux-dark .why-card p { color: var(--lux-ivory-card-text); }

/* ---------- Testimonials — auto-scrolling marquee (matches design file) ---------- */
.tmarquee-wrap {
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.tmarquee-track {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: tmarquee 60s linear infinite;
}

.tmarquee-wrap:hover .tmarquee-track { animation-play-state: paused; }

@keyframes tmarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tmarquee-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to right, var(--lux-bg-alt) 0%, rgba(18,16,13,0) 7%, rgba(18,16,13,0) 93%, var(--lux-bg-alt) 100%);
}

.testi-slide {
  margin: 0;
  flex: 0 0 460px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 38px 34px;
  background: var(--lux-card);
  border: 1px solid rgba(201,161,92,0.18);
  transition: border-color 0.3s;
}

.testi-slide:hover { border-color: rgba(201,161,92,0.5); }

.testi-mark {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 0.5;
  color: var(--gold);
}

.testi-slide .testi-quote {
  margin: 0;
  flex: 1;
  font-family: 'Outfit', sans-serif;
  font-size: 17.5px;
  font-weight: 500;
  line-height: 1.6;
  color: rgba(242,237,227,0.88);
}

.testi-slide .testi-attr {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.testi-slide .testi-attr::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.testi-slide .testi-attr span {
  display: inline;
  color: rgba(242,237,227,0.5);
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  margin-top: 0;
}

@media (prefers-reduced-motion: reduce) {
  .tmarquee-track { animation: none; flex-wrap: wrap; width: 100%; }
  .tmarquee-track [aria-hidden="true"] { display: none; }
  .tmarquee-wrap::after { display: none; }
}

@media (max-width: 640px) {
  .testi-slide { flex: 0 0 320px; }
}

/* ---------- Page Header (Services / Case Studies / About / Contact) ---------- */
.page-header {
  padding: 104px 0 80px;
  border-bottom: 1px solid rgba(201,161,92,0.18);
  position: relative;
  overflow: hidden;
  background: var(--lux-bg);
  color: var(--lux-ivory);
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 12% 0%, rgba(185,138,68,0.14), rgba(14,13,11,0) 68%);
  pointer-events: none;
}

.page-header .wrap { position: relative; }

.page-header .eyebrow-row { display: flex; align-items: center; gap: 16px; margin-bottom: 26px; }
.page-header .eyebrow-row .rule { display: block; width: 56px; height: 1px; background: linear-gradient(to right, var(--gold), rgba(201,161,92,0)); }
.page-header .eyebrow-row .label { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-light); font-weight: 500; }

.page-header h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.06;
  margin: 0;
  text-transform: uppercase;
  max-width: 900px;
  color: var(--lux-ivory);
}

.page-header p {
  max-width: 640px;
  font-size: 17px;
  font-weight:400;
  line-height: 1.85;
  color: rgba(242,237,227,0.68);
  margin: 28px 0 0;
}

/* ---------- Contact page — details + enquiry card ---------- */
.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 46px; }

.contact-info-block { display: flex; flex-direction: column; gap: 12px; }
.contact-info-block .label { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-light); font-weight: 500; }
.contact-info-block a.value {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 38px;
  color: var(--lux-ivory);
}
.contact-info-block a.value:hover { color: var(--gold-light); }
.contact-info-block a.value.email { font-size: 30px; }
.contact-info-block .value-text { font-size: 18px; font-weight:400; line-height: 1.75; color: rgba(242,237,227,0.75); }

.contact-card {
  background: var(--lux-card);
  border: 1px solid rgba(201,161,92,0.18);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-card h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 28px;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
  color: var(--lux-ivory);
}

.contact-card p { font-size: 15.5px; font-weight:400; line-height: 1.8; color: rgba(242,237,227,0.65); margin: 0; }

.contact-card .btn { display: block; text-align: center; }
.contact-card .form-field label { color: rgba(242,237,227,0.75); }
.contact-card .form-field { margin-bottom: 14px; }
.contact-card .form-sent { color: var(--gold-light); font-weight: 600; margin: 0; }

.contact-card .note {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(242,237,227,0.45);
  border-top: 1px solid rgba(242,237,227,0.08);
  padding-top: 22px;
}

@media (max-width: 980px) {
  .contact-details { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- Case Studies grid — image on top, text below (readable, not overlaid) ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case-card {
  display: flex;
  flex-direction: column;
  background: var(--lux-card);
  border: 1px solid rgba(201,161,92,0.14);
  color: var(--lux-ivory);
  transition: border-color 0.25s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.case-card:hover {
  border-color: rgba(201,161,92,0.45);
  transform: scale(1.03);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  z-index: 2;
}

.case-card-media { display: block; height: 300px; overflow: hidden; }
.case-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.case-card:hover .case-card-media img { transform: scale(1.05); }

.case-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 28px 34px;
}

.case-card-meta {
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.case-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--lux-ivory);
}

.case-card-summary {
  font-size: 15px;
  font-weight:400;
  line-height: 1.75;
  color: rgba(242,237,227,0.6);
}

.case-card-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }

@media (max-width: 980px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .case-grid { grid-template-columns: 1fr; }
}

/* ---------- Our Work filters + project pages (Sept 2026) ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 34px; }
.filter-btn {
  font-family: 'Outfit', sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  min-height: 44px; padding: 10px 18px; border-radius: 2px; cursor: pointer;
  background: transparent; color: var(--lux-ivory); border: 1px solid rgba(242,237,227,0.45);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--gold-light); }
.filter-btn[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: #0E0D0B; }
.filter-empty { margin: 24px 0 0; font-size: 17px; color: var(--lux-ivory); }
.filter-empty a { color: var(--gold-light); }
.case-card[hidden] { display: none; }
.case-card-summary { font-weight: 400; color: rgba(242,237,227,0.78); }
.case-card-link { margin-top: auto; padding-top: 12px; font-family: 'Outfit', sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-light); }
.back-link { display: inline-block; margin-bottom: 26px; font-family: 'Outfit', sans-serif; font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-light); }
.project-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px 32px; margin: 0 0 30px; padding: 26px 0; border-top: 1px solid rgba(201,161,92,0.18); border-bottom: 1px solid rgba(201,161,92,0.18); }
.project-meta div { margin: 0; }
.project-meta .label { display: block; font-family: 'Outfit', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 6px; }
.project-meta .value { margin: 0; font-family: 'Jost', sans-serif; font-size: 17px; font-weight: 500; letter-spacing: 0; text-transform: none; line-height: 1.5; color: var(--lux-ivory); }
.project-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.project-gallery figure, .project-hero { margin: 0; background: var(--lux-card); }
.project-gallery figure:first-child { grid-column: 1 / -1; }
.project-gallery img, .project-hero img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; }
.project-gallery figure:first-child img, .project-hero img { aspect-ratio: 16 / 9; }
.project-gallery figcaption, .project-hero figcaption { padding: 12px 16px; font-size: 14.5px; color: rgba(242,237,227,0.78); }
.project-hero { margin-bottom: 40px; }
.project-body { max-width: 760px; font-size: 17px; line-height: 1.65; }
.project-body p { margin: 0 0 18px; color: rgba(242,237,227,0.85); }
.project-body strong { color: var(--lux-ivory); }
@media (max-width: 640px) {
  .project-gallery { grid-template-columns: 1fr; }
  .cs-list { grid-template-columns: 1fr; }
}

/* ============ Readability, colour and mobile header pass (Sept 2026) ============ */
:root {
  --lux-bg: #11110F;
  --lux-bg-alt: #161613;
  --lux-bg-deep: #0D0D0B;
  --lux-card: #1D1D19;
  --lux-ivory: #F2EDE3;
  --lux-ivory-muted: #D0CBC2;
  --lux-ivory-dim: #AAA59C;
  --gold: #C6A25D;
  --lux-gold: #C6A25D;
  --gold-light: #C6A25D;
  --lux-gold-light: #C6A25D;
  --lux-gold-deep: #B08A47;
  --lux-gold-highlight: #D8BA78;
}
body { font-size: 17px; font-weight: 400; line-height: 1.6; }
.lede { font-size: 18px; line-height: 1.6; }
.lux-dark p, .lux-dark li { color: var(--lux-ivory-muted); }
.lux-dark figcaption, .lux-dark .note, .lux-dark .form-note, .lux-dark .stat-label { color: var(--lux-ivory-dim); }
.lux-dark h1, .lux-dark h2, .lux-dark h3, .lux-dark h4 { color: var(--lux-ivory); }
.section { padding: 88px 0; }
.section-header { margin-bottom: 44px; }
.eyebrow, .case-card-meta { letter-spacing: 0.14em; }
.case-card-meta { font-size: 12px; }
.main-nav a { letter-spacing: 0.08em; font-weight: 500; color: rgba(242,237,227,0.8); }
.btn-gold { color: #11110F; }
.btn-outline { border-color: rgba(242,237,227,0.6); }
.btn-outline:hover, .btn-outline:focus-visible { border-color: var(--gold); color: var(--gold); }
.btn-header { border-color: var(--gold); color: var(--gold); font-weight: 600; letter-spacing: 0.1em; }
.nav-toggle { width: 44px; height: 44px; border-color: rgba(242,237,227,0.5); }

/* Hero: readable over any slideshow image, and a strapline that wraps */
.hero-media::after { background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.45) 40%, rgba(0,0,0,0.92) 100%); }
.hero-center .hero-content { text-shadow: 0 2px 24px rgba(0,0,0,0.6); }
.hero-kicker { font-family: 'Outfit', sans-serif; font-size: clamp(12px, 1.4vw, 14px); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hero-center .hero-sub { letter-spacing: 0.1em; text-wrap: balance; max-width: 40ch; }

/* Mobile phone number lives inside the menu */
.main-nav-tel { display: none; }

@media (max-width: 980px) {
  .site-header .wrap { height: 64px; gap: 10px; }
  .brand img { height: 44px; margin: 0; }
  .header-actions { gap: 10px; }
  .header-tel { display: none; }
  .btn-header { padding: 10px 14px; font-size: 11px; letter-spacing: 0.06em; }
  .main-nav.nav-open { top: 64px; }
  .main-nav-tel { display: block; font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--gold) !important; letter-spacing: 0.02em !important; text-transform: none !important; }
  .hero-center .hero-sub { font-size: 13px; letter-spacing: 0.06em; }
  .hero-center .hero-content { padding: 90px 0 70px; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 32px; }
  .hero-center h1 { font-size: clamp(32px, 9.5vw, 40px); }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Tablet band (981–1100px): the six-link nav no longer fits beside the phone + button, so use the compact header here too */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .main-nav.nav-open {
    display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--black); border-bottom: 1px solid rgba(201,161,92,0.25); padding: 8px var(--gutter) 20px;
  }
  .main-nav.nav-open a { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-toggle { display: flex; }
  .site-header .wrap { height: 64px; gap: 10px; }
  .brand img { height: 44px; margin: 0; }
  .header-actions { gap: 10px; }
  .header-tel { display: none; }
  .btn-header { padding: 10px 14px; font-size: 11px; letter-spacing: 0.06em; }
  .main-nav-tel { display: block; font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--gold) !important; letter-spacing: 0.02em !important; text-transform: none !important; }
}

/* Homepage in-house joinery process steps */
.process-steps { list-style: none; margin: 26px 0 22px; padding: 0; display: grid; gap: 14px; }
.process-steps li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; font-size: 16.5px; line-height: 1.55; color: var(--lux-ivory-muted); }
.process-steps strong { color: var(--lux-ivory); font-weight: 600; }
.step-num { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; color: var(--gold); padding-top: 3px; border-top: 2px solid var(--gold); }

/* Services / About / Contact structure (Sept 2026) */
.inc-title { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin: 26px 0 10px; }
.inc-list { list-style: none; margin: 0 0 6px; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 22px; }
.inc-list li { position: relative; padding-left: 18px; font-size: 16.5px; line-height: 1.5; color: var(--lux-ivory-muted); }
.inc-list li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 8px; height: 2px; background: var(--gold); }
.related-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 8px; }
.related-list a { color: var(--lux-ivory); font-weight: 600; border-bottom: 1px solid rgba(198,162,93,0.5); }
.related-list a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.related-list span { color: var(--lux-ivory-dim); font-size: 15px; }
.service-block .split-copy .btn { margin-top: 6px; }
.how-grid { grid-template-columns: repeat(3, 1fr); }
.people-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.person { background: var(--lux-card); border: 1px solid rgba(201,161,92,0.14); padding: 26px 26px 24px; }
.person h3 { font-size: 21px; font-weight: 700; margin-bottom: 6px; }
.person-role { display: block; font-size: 15px; color: var(--lux-ivory-dim); }
.req { color: var(--gold); }
.opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--lux-ivory-dim); }
.form-field select { width: 100%; border: 1px solid var(--grey-200); background: var(--white); padding: 14px 16px; font-family: 'Jost', sans-serif; font-size: 15px; color: var(--black); }
.form-field select:focus, .form-field input[type="file"]:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.form-field input[type="file"] { width: 100%; padding: 10px 0; font-family: 'Jost', sans-serif; font-size: 15px; color: var(--lux-ivory); }
.contact-card .form-note { color: var(--lux-ivory-dim); font-size: 14px; line-height: 1.55; }
.form-error { margin: 0 0 14px; padding: 12px 14px; border: 1px solid #C96A5C; color: #F2EDE3; background: rgba(201,106,92,0.15); font-size: 15px; }
@media (max-width: 980px) { .how-grid, .people-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .inc-list { grid-template-columns: 1fr; } }

/* Case-study bodies, client feedback, and photo placeholders */
.project-body h2 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; margin: 34px 0 10px; color: var(--lux-ivory); }
.project-body h2:first-child { margin-top: 0; }
.client-feedback { margin: 44px 0 0; padding: 28px 30px; border-left: 3px solid var(--gold); background: var(--lux-card); max-width: 760px; }
.client-feedback p { margin: 0 0 14px; font-size: 18px; line-height: 1.6; color: var(--lux-ivory); }
.client-feedback footer { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--gold); }
.client-feedback footer span { display: block; font-family: 'Jost', sans-serif; font-weight: 400; font-size: 15px; color: var(--lux-ivory-dim); margin-top: 2px; }
.photos-pending { margin: 26px 0 0; font-size: 15px; color: var(--lux-ivory-dim); }
.case-card-media.is-placeholder { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1D1D19, #26261F); }
.case-card-media.is-placeholder span { font-family: 'Outfit', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* Testimonials: smaller cards that size to their own quote, with more punch */
.tmarquee-track { align-items: flex-start; gap: 20px; }
.testi-slide {
  flex-basis: 360px; gap: 14px; padding: 26px 24px 22px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
}
.testi-slide:hover, .testi-slide:focus-within, .testi-slide.is-open {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(0,0,0,0.5), 0 0 0 1px rgba(198,162,93,0.35), 0 0 32px rgba(198,162,93,0.18);
}
.testi-mark { font-size: 44px; line-height: 0.4; }
.testi-slide .testi-quote {
  font-size: 15.5px; line-height: 1.55; flex: initial;
  display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden;
}
.testi-slide:hover .testi-quote, .testi-slide:focus-within .testi-quote, .testi-slide.is-open .testi-quote { -webkit-line-clamp: unset; overflow: visible; }
.testi-slide .testi-attr { font-size: 11.5px; letter-spacing: 0.1em; }
.testi-slide .testi-attr span { color: var(--lux-ivory-dim); }
.testi-more { align-self: flex-start; margin-top: -4px; background: none; border: 0; padding: 0; font-family: 'Outfit', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); cursor: pointer; }
.testi-slide:hover .testi-more, .testi-slide.is-open .testi-more { display: none; }
@media (max-width: 640px) { .testi-slide { flex-basis: min(320px, 84vw); } }

/* Testimonials: uniform card size; the attribution pins to the bottom, expanded quotes grow the card */
.tmarquee-track { align-items: stretch; }
.testi-slide { height: 300px; }
.testi-slide .testi-attr { margin-top: auto; }
.testi-slide:hover, .testi-slide:focus-within, .testi-slide.is-open { height: auto; min-height: 300px; }

/* Client logos: larger, full colour, with a rolling "pop" as they travel */
.client-logo { height: 64px; max-width: 200px; filter: none; opacity: 0.95; animation: logoPop 5.5s ease-in-out infinite; transform-origin: center; }
.marquee-track { gap: 84px; }
.client-logo:nth-child(11n+1) { animation-delay: 0s; }
.client-logo:nth-child(11n+2) { animation-delay: 0.5s; }
.client-logo:nth-child(11n+3) { animation-delay: 1s; }
.client-logo:nth-child(11n+4) { animation-delay: 1.5s; }
.client-logo:nth-child(11n+5) { animation-delay: 2s; }
.client-logo:nth-child(11n+6) { animation-delay: 2.5s; }
.client-logo:nth-child(11n+7) { animation-delay: 3s; }
.client-logo:nth-child(11n+8) { animation-delay: 3.5s; }
.client-logo:nth-child(11n+9) { animation-delay: 4s; }
.client-logo:nth-child(11n+10) { animation-delay: 4.5s; }
.client-logo:nth-child(11n+11) { animation-delay: 5s; }
@keyframes logoPop {
  0%, 70%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(198,162,93,0)); opacity: 0.95; }
  80% { transform: scale(1.18); filter: drop-shadow(0 8px 22px rgba(198,162,93,0.45)); opacity: 1; }
  90% { transform: scale(1.06); filter: drop-shadow(0 4px 12px rgba(198,162,93,0.25)); opacity: 1; }
}
.client-logo:hover { animation-play-state: paused; transform: scale(1.2); opacity: 1; }
@media (max-width: 640px) { .client-logo { height: 48px; max-width: 150px; } .marquee-track { gap: 52px; } }
@media (prefers-reduced-motion: reduce) { .client-logo { animation: none; } }

/* Client logos: bigger still */
.client-logo { height: 88px; max-width: 260px; }
.marquee-track { gap: 96px; }
.client-strip { padding-top: 40px; padding-bottom: 40px; }
@media (max-width: 640px) { .client-logo { height: 60px; max-width: 180px; } .marquee-track { gap: 56px; } }

/* Testimonials: static grid instead of a scrolling strip; cards still pop on hover */
.tmarquee-wrap { overflow: visible; }
.tmarquee-wrap::after { display: none; }
.tmarquee-track { animation: none; width: 100%; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.testi-slide[aria-hidden="true"] { display: none; }
.testi-slide { flex-basis: auto; width: auto; }
@media (max-width: 640px) { .tmarquee-track { grid-template-columns: 1fr; } .testi-slide { height: auto; min-height: 0; } .testi-slide .testi-quote { -webkit-line-clamp: unset; overflow: visible; } .testi-more { display: none; } }

/* Bigger Effect Joinery logo in the header */
.site-header .wrap { height: 100px; }
.brand img { height: 92px; margin: -6px 0; }
.site-footer .footer-grid img { height: 72px; width: auto; }
@media (max-width: 1100px) {
  .site-header .wrap { height: 76px; }
  .brand img { height: 58px; margin: 0; }
  .main-nav.nav-open { top: 76px; }
}

/* Logo file is now trimmed (445x143), so the artwork fills its box */
.site-header .wrap { height: 92px; }
.brand img { height: 60px; margin: 0; }
.site-footer .footer-grid img { height: 48px; margin: 0 0 20px; display: block; }
@media (max-width: 1100px) {
  .site-header .wrap { height: 72px; }
  .brand img { height: 42px; }
  .main-nav.nav-open { top: 72px; }
}

/* Sectors: photo tiles */
.sectors-grid { gap: 12px; background: transparent; border: 0; }
.sector-tile { padding: 0; min-height: 380px; border: 1px solid rgba(201,161,92,0.18); }
.sector-tile::before { display: none; }
.sector-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.sector-tile.has-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,17,15,0.96) 0%, rgba(17,17,15,0.72) 38%, rgba(17,17,15,0.12) 70%, rgba(17,17,15,0) 100%); }
.sector-copy { position: relative; z-index: 1; padding: 28px 24px 26px; margin-top: auto; }
.sector-tile h3 { margin-top: 0; font-size: 24px; color: var(--lux-ivory); }
.sector-tile p { font-size: 15px; color: var(--lux-ivory-muted); margin-top: 8px; }
.sector-tile:hover .sector-photo { transform: scale(1.05); }
.sector-tile:hover { border-color: rgba(201,161,92,0.55); }
@media (max-width: 980px) { .sector-tile { min-height: 300px; } }
