/* ─────────────────────────────────────────
   GWV Brickwork — Site Stylesheet
   Used across all five pages
─────────────────────────────────────────── */

:root{
  --gwv-ink:        #161514;
  --gwv-bone:       #F4F1EB;
  --gwv-terracotta: #9C4A2E;
  --gwv-terracotta-deep: #7A371F;
  --gwv-mortar:     #D9D2C5;
  --gwv-ink-soft:   #2E2B27;

  --sans:    "Manrope", -apple-system, system-ui, sans-serif;
  --serif:   "Cormorant Garamond", "Times New Roman", serif;
  --mono:    "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
}

*{box-sizing:border-box; margin:0; padding:0}
html{scroll-behavior:smooth}
body{
  font-family: var(--sans);
  color: var(--gwv-ink);
  background: var(--gwv-bone);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle paper grain */
body::before{
  content:"";
  position:fixed; inset:0;
  pointer-events:none;
  z-index: 999;
  opacity: .25;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.086  0 0 0 0 0.082  0 0 0 0 0.078  0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

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

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

/* Italic accent — Cormorant Garamond, sized up 15% optically vs Manrope */
.it{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1.15em;
  line-height: 0.9;
}
.it-terracotta{ color: var(--gwv-terracotta) }

/* ─────── Eyebrow ─────── */
.eyebrow{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gwv-ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.eyebrow::before{
  content:"";
  width: 28px; height: 1px;
  background: var(--gwv-terracotta);
}
.eyebrow-light{ color: rgba(244,241,235,.85)}
.eyebrow-light::before{ background: var(--gwv-bone)}

/* ─────── Logo ─────── */
.logo{
  display: block;
  height: 53px;
  width: auto;
}
.logo-footer{ height: 72px }

/* ─────── Header ─────── */
header{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .3s, backdrop-filter .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
header.scrolled,
header.solid{
  background: rgba(244, 241, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(22,21,20,.08);
}
header.scrolled .logo .letter,
header.solid .logo .letter{ fill: var(--gwv-ink) !important}
header.scrolled .logo rect,
header.solid .logo rect{ stroke: var(--gwv-ink) !important}
header.scrolled .logo g path,
header.solid .logo g path{ fill: var(--gwv-ink) !important}
header.scrolled .nav ul a,
header.solid .nav ul a{ color: var(--gwv-ink)}
header.scrolled .nav .cta,
header.solid .nav .cta{ background: var(--gwv-ink); color: var(--gwv-bone)}

.nav{
  display:flex; align-items:center; justify-content:space-between;
}
.nav ul{
  display: flex; gap: 36px; list-style: none;
}
.nav ul a{
  font-size: 13px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gwv-bone);
  transition: color .3s;
}
.nav ul a.current{ color: var(--gwv-terracotta) !important}
.nav ul a:hover::after,
.nav ul a.current::after{
  content:""; position:absolute; left:0; right:0; bottom:0;
  height:1px; background: var(--gwv-terracotta);
}
.nav .cta{
  background: var(--gwv-bone);
  color: var(--gwv-ink);
  padding: 12px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .3s;
}
.nav .cta:hover{ background: var(--gwv-terracotta); color: var(--gwv-bone)}

/* ─────── Buttons ─────── */
.btn{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid var(--gwv-ink);
  transition: all .25s;
  cursor: pointer;
  background: var(--gwv-ink);
  color: var(--gwv-bone);
}
.btn:hover{ background: var(--gwv-terracotta); border-color: var(--gwv-terracotta)}
.btn .arrow{ transition: transform .25s; font-size: 16px}
.btn:hover .arrow{ transform: translateX(4px)}
.btn-ghost{ background: transparent; color: var(--gwv-ink)}
.btn-ghost:hover{ background: var(--gwv-ink); color: var(--gwv-bone); border-color: var(--gwv-ink)}

/* ─────── Hero (homepage) ─────── */
.hero{
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: var(--gwv-ink);
  color: var(--gwv-bone);
}
.hero-media{
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-media video,
.hero-media .placeholder{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Slow Ken Burns pan/zoom on the hero still image */
.hero-media .placeholder{
  transform-origin: center center;
  animation: kenburns 28s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns{
  0%{
    transform: scale(1.08) translate(-1.5%, 0.5%);
  }
  100%{
    transform: scale(1.18) translate(2%, -1.5%);
  }
}
@media (prefers-reduced-motion: reduce){
  .hero-media .placeholder{ animation: none }
}
.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(22,21,20,.55) 0%, rgba(22,21,20,.25) 35%, rgba(22,21,20,.6) 100%),
    linear-gradient(90deg, rgba(22,21,20,.5) 0%, rgba(22,21,20,0) 60%);
  z-index: 1;
}
.hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(60px, 9vh, 120px);
  padding-top: 140px;
}
.hero-content .wrap{ width: 100% }
.hero-grid{
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.hero h1{
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(48px, 7.5vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 24px 0 32px;
  color: var(--gwv-bone);
  max-width: 16ch;
}
.hero h1 .it{
  font-weight: 400;
  color: var(--gwv-bone);
  letter-spacing: -0.01em;
}
.hero p.lead{
  font-size: clamp(16px, 1.3vw, 19px);
  max-width: 48ch;
  color: rgba(244,241,235,.85);
  line-height: 1.55;
  font-weight: 400;
}
.hero-meta{
  border-left: 1px solid rgba(244,241,235,.25);
  padding-left: 24px;
  color: rgba(244,241,235,.85);
}
.hero-meta .label{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,241,235,.6);
  margin-bottom: 8px;
}
.hero-meta .value{
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
}
.hero-meta .value:last-child{ margin-bottom: 0 }
.hero-meta .value .it{
  font-size: 18px;
  color: var(--gwv-bone);
}
.hero-scroll{
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244,241,235,.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-scroll::after{
  content:"";
  width: 1px;
  height: 32px;
  background: rgba(244,241,235,.4);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse{
  0%, 100%{ opacity: .4; transform: scaleY(1)}
  50%{ opacity: 1; transform: scaleY(1.3)}
}

/* ─────── Page Hero (inner pages) ─────── */
.page-hero{
  position: relative;
  height: 60vh;
  min-height: 480px;
  overflow: hidden;
  background: var(--gwv-ink);
  color: var(--gwv-bone);
}
.page-hero .hero-media{ position: absolute; inset: 0 }
.page-hero .placeholder{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
  animation: kenburns-page 32s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns-page{
  0%{
    transform: scale(1.06) translate(-1%, 0.5%);
  }
  100%{
    transform: scale(1.14) translate(1.5%, -1%);
  }
}
@media (prefers-reduced-motion: reduce){
  .page-hero .placeholder{ animation: none }
}
.page-hero .hero-overlay{
  background:
    linear-gradient(180deg, rgba(22,21,20,.6) 0%, rgba(22,21,20,.4) 40%, rgba(22,21,20,.7) 100%);
}
.page-hero-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(40px, 6vh, 80px);
  padding-top: 140px;
}
.page-hero h1{
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-top: 20px;
  color: var(--gwv-bone);
  max-width: 18ch;
}
.page-hero h1 .it{
  font-weight: 400;
  color: var(--gwv-bone);
  letter-spacing: -0.01em;
}
.breadcrumbs{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(244,241,235,.7);
  margin-bottom: 16px;
}
.breadcrumbs a:hover{ color: var(--gwv-terracotta)}
.breadcrumbs .sep{ margin: 0 10px; color: rgba(244,241,235,.4)}

/* ─────── Intro section ─────── */
.intro{
  padding: clamp(80px, 12vw, 180px) 0;
}
.intro-grid{
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.intro h2{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 24px;
  max-width: 14ch;
}
.intro h2 .it{ letter-spacing: -0.01em }
.intro-body p{
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--gwv-ink-soft);
  margin-bottom: 24px;
  font-weight: 400;
  max-width: 60ch;
}
.intro-body p:first-child{
  font-size: clamp(20px, 1.7vw, 26px);
  color: var(--gwv-ink);
  line-height: 1.45;
  font-weight: 400;
  margin-bottom: 32px;
}
.intro-body p:first-child .it{
  color: var(--gwv-terracotta);
}

/* ─────── Capabilities ─────── */
.capabilities{
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--gwv-ink);
  color: var(--gwv-bone);
  position: relative;
}
.capabilities .section-head{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  margin-bottom: clamp(60px, 8vw, 100px);
  align-items: end;
}
.capabilities h2{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 24px;
  color: var(--gwv-bone);
}
.capabilities h2 .it{ color: var(--gwv-terracotta)}
.capabilities .intro-text{
  color: rgba(244,241,235,.78);
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.6;
  max-width: 52ch;
}
.capability-list{
  list-style: none;
  border-top: 1px solid rgba(244,241,235,.18);
}
.capability{
  border-bottom: 1px solid rgba(244,241,235,.18);
  padding: clamp(28px, 4vw, 44px) 0;
  display: grid;
  grid-template-columns: 1fr 1.3fr auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
  transition: padding .35s cubic-bezier(.2,.7,.2,1);
  cursor: pointer;
}
.capability:hover{
  padding-left: 16px;
  padding-right: 16px;
}
.capability:hover h3{ color: var(--gwv-terracotta)}
.capability-num{
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(244,241,235,.6);
  letter-spacing: .14em;
  padding-top: 10px;
  font-weight: 500;
}
.capability h3{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  transition: color .3s;
}
.capability h3 .it{ font-weight: 400 }
.capability p{
  color: rgba(244,241,235,.75);
  font-size: 15px;
  line-height: 1.6;
  padding-top: 8px;
}
.capability-arrow{
  width: 52px; height: 52px;
  border: 1px solid rgba(244,241,235,.3);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  margin-top: 4px;
  font-size: 18px;
  color: rgba(244,241,235,.7);
}
.capability:hover .capability-arrow{
  background: var(--gwv-terracotta);
  border-color: var(--gwv-terracotta);
  color: var(--gwv-bone);
  transform: rotate(-45deg);
}

/* ─────── Services detail (services page) ─────── */
.service-detail{
  padding: clamp(80px, 10vw, 140px) 0;
}
.service-detail + .service-detail{ padding-top: 0 }
.service-detail-grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.service-detail.alt .service-detail-grid{
  direction: rtl;
}
.service-detail.alt .service-detail-grid > *{
  direction: ltr;
}
.service-detail-image{
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-color: var(--gwv-mortar);
}
.service-detail h2{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 20px 0 24px;
}
.service-detail h2 .it{ color: var(--gwv-terracotta)}
.service-detail .lead{
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--gwv-ink-soft);
  line-height: 1.55;
  margin-bottom: 32px;
}
.service-detail h4{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gwv-terracotta);
  margin: 24px 0 12px;
  font-weight: 500;
}
.service-detail ul.bullets{
  list-style: none;
  display: grid;
  gap: 8px;
}
.service-detail ul.bullets li{
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  color: var(--gwv-ink-soft);
  line-height: 1.55;
}
.service-detail ul.bullets li::before{
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gwv-terracotta);
}

/* ─────── Approach ─────── */
.approach{
  padding: clamp(80px, 12vw, 180px) 0;
}
.approach-grid{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
}
.approach-art{
  position: sticky; top: 120px;
  aspect-ratio: 3/4;
  background: var(--gwv-mortar);
  overflow: hidden;
  align-self: start;
  background-size: cover;
  background-position: center;
}
.approach-art .img-caption{
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gwv-bone);
  z-index: 2;
  background: rgba(22,21,20,.5);
  padding: 6px 10px;
}
.approach h2{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 24px 0 32px;
  max-width: 18ch;
}
.approach h2 .it{ color: var(--gwv-terracotta)}
.approach .lead{
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--gwv-ink-soft);
  line-height: 1.55;
  max-width: 60ch;
  margin-bottom: 48px;
}
.approach-points{
  list-style: none;
  display: grid;
  gap: 0;
}
.approach-points li{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(22,21,20,.15);
}
.approach-points li:last-child{
  border-bottom: 1px solid rgba(22,21,20,.15);
}
.approach-points .num{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gwv-terracotta);
  letter-spacing: .14em;
  padding-top: 4px;
  font-weight: 500;
}
.approach-points h4{
  font-family: var(--sans);
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.approach-points p{
  color: var(--gwv-ink-soft);
  font-size: 15px;
  line-height: 1.55;
  max-width: 56ch;
}

/* ─────── Sectors ─────── */
.sectors{
  padding: clamp(80px, 12vw, 160px) 0;
  background: var(--gwv-mortar);
}
.sectors-head{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  margin-bottom: clamp(48px, 6vw, 80px);
  align-items: end;
}
.sectors h2{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 24px;
}
.sectors h2 .it{ color: var(--gwv-terracotta)}
.sectors-head p{
  color: var(--gwv-ink-soft);
  font-size: 17px;
  line-height: 1.55;
  max-width: 48ch;
}
.sectors-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(22,21,20,.18);
  border: 1px solid rgba(22,21,20,.18);
}
.sector{
  background: var(--gwv-bone);
  padding: clamp(28px, 4vw, 44px);
  aspect-ratio: 4/5;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background .35s, color .35s;
  cursor: pointer;
}
.sector:hover{ background: var(--gwv-ink); color: var(--gwv-bone)}
.sector:hover .sector-num{ color: var(--gwv-terracotta)}
.sector:hover .sector-meta{ color: rgba(244,241,235,.75)}
.sector-num{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  color: var(--gwv-ink-soft);
  transition: color .35s;
  font-weight: 500;
}
.sector h3{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 16px 0;
}
.sector-meta{
  font-size: 14px;
  color: var(--gwv-ink-soft);
  transition: color .35s;
  line-height: 1.55;
}

/* ─────── Featured project ─────── */
.featured{
  padding: clamp(80px, 12vw, 160px) 0;
}
.featured-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.featured-image{
  aspect-ratio: 4/5;
  background: var(--gwv-terracotta);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.featured-image .img-caption{
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gwv-bone);
  z-index: 2;
  background: rgba(22,21,20,.5);
  padding: 6px 10px;
}
.featured h2{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 24px 0 24px;
}
.featured h2 .it{ color: var(--gwv-terracotta)}
.featured p{
  color: var(--gwv-ink-soft);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 50ch;
}
.featured-facts{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
  padding: 24px 0;
  border-top: 1px solid rgba(22,21,20,.15);
  border-bottom: 1px solid rgba(22,21,20,.15);
}
.fact-label{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gwv-ink-soft);
  margin-bottom: 6px;
}
.fact-value{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ─────── Project aerial (full-bleed) ─────── */
.project-aerial{
  position: relative;
  height: clamp(420px, 65vh, 720px);
  overflow: hidden;
  background: var(--gwv-ink);
}
.aerial-image{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  animation: kenburns-page 36s ease-in-out infinite alternate;
  will-change: transform;
}
.aerial-caption{
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 0;
  background: linear-gradient(to top, rgba(22,21,20,0.7), transparent);
}
.aerial-label{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gwv-bone);
}

/* ─────── Project gallery (projects page) ─────── */
.project-gallery{
  padding: clamp(60px, 8vw, 100px) 0;
}
.gallery-intro{
  margin-bottom: clamp(36px, 5vw, 56px);
  max-width: 600px;
}
.gallery-intro h3{
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 12px;
  line-height: 1.1;
}
.project-gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.project-gallery-grid .gallery-item{
  background-size: cover;
  background-position: center;
  background-color: var(--gwv-mortar);
  grid-column: span 1;
  grid-row: span 1;
  transition: transform 0.6s ease;
}
.project-gallery-grid .gallery-item:hover{
  transform: scale(1.01);
}
.project-gallery-grid .gallery-item.wide{
  grid-column: span 2;
}
.project-gallery-grid .gallery-item.tall{
  grid-row: span 2;
}

/* ─────── The four blocks feature ─────── */
.blocks-feature{
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--gwv-ink);
  color: var(--gwv-bone);
}
.blocks-intro{
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
}
.blocks-intro .eyebrow{
  color: var(--gwv-terracotta);
}
.blocks-intro h3{
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 12px 0 20px;
  color: var(--gwv-bone);
  line-height: 1.05;
}
.blocks-intro p{
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244, 241, 235, 0.75);
}
.blocks-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.block-item{
  position: relative;
}
.block-image{
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-color: var(--gwv-ink-soft);
}
.block-name{
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gwv-bone);
}

/* Project info bar */
.project-info-bar{
  background: var(--gwv-ink);
  color: var(--gwv-bone);
  padding: clamp(50px, 7vw, 80px) 0;
}
.project-info-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.project-info-item .label{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(244,241,235,.6);
  margin-bottom: 10px;
}
.project-info-item .value{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em;
  color: var(--gwv-bone);
  line-height: 1.2;
}
.project-info-item .value .it{ color: var(--gwv-terracotta)}

/* "More to come" placeholder for projects page */
.more-projects{
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
  background: var(--gwv-mortar);
}
.more-projects h3{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 42px);
  letter-spacing: -0.03em;
  margin: 16px 0;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.more-projects h3 .it{ color: var(--gwv-terracotta)}
.more-projects p{
  color: var(--gwv-ink-soft);
  font-size: 16px;
  max-width: 50ch;
  margin: 0 auto 24px;
}

/* ─────── Team (about page) ─────── */
.team{
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--gwv-mortar);
}
.team-head{
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 800px;
}
.team h2{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-top: 24px;
}
.team h2 .it{ color: var(--gwv-terracotta)}

/* Team list: each member is a full-width row with photo + bio */
.team-list{
  display: grid;
  gap: clamp(24px, 3vw, 40px);
}
.team-row{
  background: var(--gwv-bone);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
}
.team-row.alt{
  grid-template-columns: 1fr 320px;
}
.team-row.alt .team-photo{ order: 2 }
.team-photo{
  aspect-ratio: 4/5;
  align-self: start;
  background-size: cover;
  background-position: center top;
  background-color: var(--gwv-terracotta);
  position: relative;
}
.team-photo[data-initials]:not([style*="background-image"])::after{
  content: attr(data-initials);
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 64px;
  color: var(--gwv-bone);
  letter-spacing: -0.03em;
}
.team-content{
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-row.alt .team-content{
  padding: clamp(32px, 4vw, 56px);
}
.team-content .name{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 6px;
}
.team-content .name .it{
  color: var(--gwv-terracotta);
}
.team-content .role{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gwv-terracotta);
  margin-bottom: 24px;
  font-weight: 500;
}
.team-content .bio{
  font-size: 15px;
  color: var(--gwv-ink-soft);
  line-height: 1.65;
}
.team-content .bio p{
  margin-bottom: 14px;
}
.team-content .bio p:last-child{ margin-bottom: 0}

/* ─────── ConstructionLine feature block ─────── */
.cl-feature{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--gwv-bone);
}
.cl-feature-inner{
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: clamp(40px, 5vw, 64px);
  border: 1px solid rgba(22,21,20,.15);
}
.cl-feature-logo img{
  width: 100%;
  max-width: 280px;
  height: auto;
}
.cl-feature h3{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 16px 0 20px;
}
.cl-feature h3 .it{ color: var(--gwv-terracotta)}
.cl-feature p{
  color: var(--gwv-ink-soft);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
}

/* ─────── Testimonial ─────── */
.testimonial{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--gwv-bone);
  border-top: 1px solid rgba(22,21,20,.1);
  border-bottom: 1px solid rgba(22,21,20,.1);
}
.testimonial blockquote{
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.testimonial .quote-mark{
  font-family: var(--serif);
  font-style: italic;
  font-size: 120px;
  line-height: 1;
  color: var(--gwv-terracotta);
  margin-bottom: -40px;
  margin-left: -10px;
}
.testimonial p.quote{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.35;
  color: var(--gwv-ink);
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}
.testimonial .attribution{
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(22,21,20,.15);
}
.testimonial .attribution-line{
  width: 40px;
  height: 1px;
  background: var(--gwv-terracotta);
}
.testimonial .name{
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.testimonial .role{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gwv-ink-soft);
  margin-top: 4px;
}

/* ─────── Accreditations ─────── */
.accreditations{
  padding: 70px 0;
  background: var(--gwv-bone);
  border-top: 1px solid rgba(22,21,20,.08);
}
.accreditations-inner{
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  flex-wrap: wrap;
  justify-content: center;
}
.accreditations-label{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gwv-ink-soft);
  flex-shrink: 0;
}
.accred-row{
  display: flex;
  gap: clamp(32px, 4.5vw, 60px);
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.accred-logo{
  height: 80px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: opacity .25s, transform .25s;
  opacity: 0.9;
}
.accred-logo:hover{
  opacity: 1;
  transform: translateY(-2px);
}
.accred-logo.tall{ height: 88px }

/* ─────── CTA banner ─────── */
.cta-banner{
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--gwv-terracotta);
  color: var(--gwv-bone);
  position: relative;
  overflow: hidden;
}
.cta-banner .wrap{ position:relative; z-index: 1}
.cta-banner-inner{
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 60px;
  align-items: end;
}
.cta-banner h2{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-top: 24px;
  color: var(--gwv-bone);
}
.cta-banner h2 .it{
  color: var(--gwv-bone);
  font-weight: 400;
}
.cta-banner .eyebrow{ color: rgba(244,241,235,.85)}
.cta-banner .eyebrow::before{ background: var(--gwv-bone)}
.cta-btn{
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--gwv-ink);
  color: var(--gwv-bone);
  padding: 22px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .25s;
}
.cta-btn:hover{ background: var(--gwv-bone); color: var(--gwv-ink)}

/* ─────── Contact page ─────── */
.contact-grid{
  padding: clamp(80px, 10vw, 140px) 0;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 100px);
}
.contact-form{
  display: grid;
  gap: 20px;
}
.contact-form label{
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gwv-ink-soft);
  margin-bottom: 8px;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea,
.contact-form select{
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(22,21,20,.2);
  background: var(--gwv-bone);
  font-family: var(--sans);
  font-size: 16px;
  color: var(--gwv-ink);
  border-radius: 0;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{
  outline: none;
  border-color: var(--gwv-terracotta);
}
.contact-form textarea{
  min-height: 140px;
  resize: vertical;
  font-family: var(--sans);
}
.contact-form-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-details{
  border-top: 1px solid rgba(22,21,20,.15);
  padding-top: 32px;
}
.contact-detail-block{
  margin-bottom: 36px;
}
.contact-detail-block .label{
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gwv-ink-soft);
  margin-bottom: 10px;
}
.contact-detail-block .value{
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
}
.contact-detail-block .value a:hover{ color: var(--gwv-terracotta)}

/* ─────── Footer ─────── */
footer{
  background: var(--gwv-ink);
  color: var(--gwv-bone);
  padding: clamp(70px, 9vw, 120px) 0 32px;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(244,241,235,.18);
}
.footer-brand-area{ margin-bottom: 24px }
.footer-tagline{
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gwv-bone);
  margin: 24px 0 20px;
  font-weight: 500;
}
.footer-grid p{
  color: rgba(244,241,235,.7);
  font-size: 14px;
  line-height: 1.6;
  max-width: 36ch;
}
.footer-col h5{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(244,241,235,.65);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul{
  list-style: none;
  display: grid;
  gap: 10px;
}
.footer-col a{
  font-size: 15px;
  color: var(--gwv-bone);
  font-weight: 400;
}
.footer-col a:hover{ color: var(--gwv-terracotta)}
.footer-bottom{
  padding-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(244,241,235,.55);
}

/* ─────── Reveal animations ─────── */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  animation: reveal 1s cubic-bezier(.2,.7,.2,1) forwards;
}
.reveal-1{ animation-delay: .2s}
.reveal-2{ animation-delay: .35s}
.reveal-3{ animation-delay: .5s}
.reveal-4{ animation-delay: .65s}
.reveal-5{ animation-delay: .8s}
@keyframes reveal{ to{ opacity: 1; transform: translateY(0)} }

/* ─────── Responsive ─────── */
@media (max-width: 960px){
  .hero-grid, .approach-grid, .sectors-head, .capabilities .section-head,
  .featured-grid, .intro-grid, .cta-banner-inner, .service-detail-grid,
  .contact-grid, .cl-feature-inner, .project-info-grid{
    grid-template-columns: 1fr;
  }
  .team-row, .team-row.alt{
    grid-template-columns: 1fr;
  }
  .team-row.alt .team-photo{ order: 0 }
  .team-photo{ aspect-ratio: 4/3 }
  .team-content,
  .team-row.alt .team-content{
    padding: clamp(28px, 4vw, 40px);
  }
  .approach-art{ position: static; aspect-ratio: 4/3 }
  .featured-image{ aspect-ratio: 16/10}
  .service-detail.alt .service-detail-grid{ direction: ltr}
  .sectors-grid{ grid-template-columns: 1fr}
  .sector{ aspect-ratio: 16/9 }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 40px}
  .capability{ grid-template-columns: 1fr auto }
  .capability p{ grid-column: 1 / -1; padding-left: 0 }
  .nav ul{ display: none}
  .hero-meta{ display: none}
  .hero{ height: auto; min-height: 100vh}
  .project-info-grid{ grid-template-columns: 1fr 1fr}
  .project-gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px }
  .project-gallery-grid .gallery-item.wide{ grid-column: span 2 }
  .blocks-grid{ grid-template-columns: 1fr 1fr }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr }
  .hero h1, .page-hero h1{ font-size: clamp(40px, 11vw, 72px)}
  .hero-scroll{ display: none}
  .featured-facts, .contact-form-row, .project-info-grid{ grid-template-columns: 1fr}
  .project-gallery-grid{ grid-template-columns: 1fr; grid-auto-rows: 240px }
  .project-gallery-grid .gallery-item.wide{ grid-column: span 1 }
  .project-gallery-grid .gallery-item.tall{ grid-row: span 1 }
  .blocks-grid{ grid-template-columns: 1fr }
}

/* ─────── Testimonials slider ─────── */
.testimonials{
  padding: clamp(80px,10vw,140px) 0;
  background: var(--gwv-bone);
  border-top: 1px solid rgba(22,21,20,.1);
  border-bottom: 1px solid rgba(22,21,20,.1);
}
.testimonials-head{ max-width: 720px; margin-bottom: clamp(40px,5vw,64px) }
.testimonials-head h2{
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(32px,4.5vw,56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 24px;
  max-width: 20ch;
}
.testimonials-head h2 .it{ color: var(--gwv-terracotta); letter-spacing: -0.01em }

.tslider{ position: relative }
.tslider-viewport{ overflow: hidden }
.tslider-track{
  display: flex;
  transition: transform .6s cubic-bezier(.65,.05,.36,1);
  will-change: transform;
}
.tslide{
  flex: 0 0 100%;
  min-width: 100%;
  display: grid;
  grid-template-columns: clamp(220px,30%,340px) 1fr;
  gap: clamp(28px,5vw,72px);
  align-items: center;
  padding: 4px;
}
.tslide-photo{ position: relative; align-self: start }
.tslide-photo img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(22,21,20,.12);
}
.tslide-photo::after{
  content:"";
  position: absolute;
  left: 0; bottom: -10px;
  width: 56px; height: 4px;
  background: var(--gwv-terracotta);
}
.tslide-content{ position: relative }
.tslide-mark{
  font-family: var(--serif);
  font-style: italic;
  font-size: 96px;
  line-height: 1;
  color: var(--gwv-terracotta);
  margin-bottom: -30px;
}
.tslide-quote{
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px,2.4vw,34px);
  line-height: 1.38;
  letter-spacing: -0.005em;
  color: var(--gwv-ink);
  margin: 0 0 28px;
}
.tslider-controls{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: clamp(32px,4vw,48px);
}
.tslider-arrow{
  width: 48px; height: 48px;
  border: 1px solid rgba(22,21,20,.25);
  background: transparent;
  color: var(--gwv-ink);
  font-size: 18px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s, border-color .25s;
}
.tslider-arrow:hover{ background: var(--gwv-ink); border-color: var(--gwv-ink); color: var(--gwv-bone) }
.tslider-dots{ display: flex; align-items: center; gap: 8px; margin: 0 4px }
.tslider-dot{
  width: 10px; height: 10px;
  padding: 0;
  border: none;
  background: rgba(22,21,20,.22);
  cursor: pointer;
  transition: width .3s, background .3s;
}
.tslider-dot[aria-selected="true"]{ width: 28px; background: var(--gwv-terracotta) }

@media (max-width: 720px){
  .tslide{ grid-template-columns: 1fr; gap: 22px }
  .tslide-photo{ width: 120px }
  .tslide-photo::after{ width: 40px; bottom: -8px }
  .tslide-mark{ font-size: 72px; margin-bottom: -22px }
}

/* Slider attribution (scoped to .tslide) */
.tslide .attribution{
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(22,21,20,.15);
}
.tslide .attribution-line{ width: 40px; height: 1px; background: var(--gwv-terracotta); flex: none }
.tslide .name{ font-weight: 600; font-size: 15px; letter-spacing: -0.01em }
.tslide .role{
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gwv-ink-soft);
  margin-top: 4px;
}

/* Review: equalise intro paragraphs on Home & Projects (same size as body) */
.intro-flat .intro-body p:first-child{
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--gwv-ink-soft);
  margin-bottom: 24px;
}

/* Contact form status message */
.form-status{
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.5;
  padding: 14px 18px;
  border-radius: 2px;
}
.form-status-ok{
  color: var(--gwv-ink);
  background: rgba(156,74,46,.08);
  border-left: 3px solid var(--gwv-terracotta);
}
.form-status-err{
  color: var(--gwv-ink);
  background: rgba(22,21,20,.06);
  border-left: 3px solid rgba(22,21,20,.4);
}
